I'm building a template based batch report that includes some javascript.
<SCRIPT>
inputTextString="&mvt:option:data;" + "&mvt:option:data_long;"
alert(inputTextString);
</SCRIPT>
If the miva option data contains an ampersand it shows up as entity code in the javascript variable. For example if the option data is A&M the inputTextString shows A&M .
Anyone know how to prevent this?
<SCRIPT>
inputTextString="&mvt:option:data;" + "&mvt:option:data_long;"
alert(inputTextString);
</SCRIPT>
If the miva option data contains an ampersand it shows up as entity code in the javascript variable. For example if the option data is A&M the inputTextString shows A&M .
Anyone know how to prevent this?
Comment