I don't think so you can access CAC inside jquery directly. What you can do is, you can create empty div or json object with CAC value and the later access those values in jquery.
e.g.
<script>
var cacObj;
cacObj.key1=cacVal1;
cacObj.key2=cacVal2;
....
</script>
I don't think so you can access CAC inside jquery directly. What you can do is, you can create empty div or json object with CAC value and the later access those values in jquery.
e.g.
<script>
var cacObj;
cacObj.key1=cacVal1;
cacObj.key2=cacVal2;
....
</script>
If yes: jquery is executed within the browser, while CAC is executed on the server-side. Mixing both approaches directly is not possible. The only chance you have is to execute the CAC lookups on the server, and include the result into JSON or the generated HTML, and use this data then inside javascript/jquery.