Hi All,
I have an application that is writing Javascript with JSP server side
code that uses escapeXML:
var someVar = "<c:out escapeXml="true " value="You'll never escape!"/
How to I unescape this? Using the unescape() function doesn't cut
it..
unescape("You&# 039;ll never escape!");
Do I have to use regex to replace or is there some other way?
Thanks for any assistance!
Rob
:)
I have an application that is writing Javascript with JSP server side
code that uses escapeXML:
var someVar = "<c:out escapeXml="true " value="You'll never escape!"/
>";
it..
unescape("You&# 039;ll never escape!");
Do I have to use regex to replace or is there some other way?
Thanks for any assistance!
Rob
:)
Comment