I have a page generated with data from both backend and front. The front end is using a jquery template, and page itself is written in JSP, and there is a conflict of using $ sign:
<script type="text/javascript">
${title}
</script>
For example, I want the above code to be interpreted by front end, but JSP is translating to something else. How do I prevent this from happening?
thanks
Oliver
Add this to the top of the page:
This should only be in the page which defines the template. Include that page from the main page, if you want to use EL in it.