How to prevent $ interpretation in JSP to make jQuery templates work -
i have page generated data both backend , front. front end using jquery template, , page written in jsp, , there conflict of using $ sign:
<script type="text/javascript"> ${title} </script>
for example, want above code interpreted front end, jsp translating else. how prevent happening?
thanks
oliver
add top of page:
<%@ page iselignored="true" %>
this should in page defines template. include page main page, if want use el in it.
Comments
Post a Comment