I have a page generated with data from both the backend and the front. The front end uses a jquery template, and the page itself is written in JSP, and there is a conflict using the $ sign:
<script type="text/javascript">
${title}
</script>
For example, I want the above code to be interpreted by the interface, but the JSP translates to something else. How to prevent this?
thank
Oliver
source
share