Problem!
I am calling a JS
function inside the html's body section, the function's parameters are gathered by parsing the EL
inside the function.
Eg:
<script type="text/javascript">
jQuery(window).load(function() {
loadImage("${expression_language_var_1}", "${expression_language_var2}");
});
</script>
But it seems that sometimes both parameters are cached and I do receive old information.
Questions!
- Are the script tags inside the html structure being cached just the same way as the external javascript files that are included in the header?
Best Regards,