I am currently working in TCL and JSP template.In the website If i save a content(its like a editing the title and saving) with double quote it shows uninterrupted String Constant in IE . If i use single quote then error is not coming. Any one please tell me how to check and correct the error. Template was around 800 lines with mixture of Java scripts , TCl, HTML and JSP.
Error:uninterrupted String Constant in IE
Collapse
X
-
Tags: None
-
I couldn't get it. can u please tell me in detail.Originally posted by acoderIf using double quotes within double quotes, you will get errors unless you escape them, i.e. \" instead of just ".
Thanks in advanceComment
-
Thanx for ur reply it works,
But I have one more problem.. I have to replace " and ' with ` that are present in the string.
I used the following reg exp: str.replace(/["']/, " ` " ).. but its not working..
it says Missing term. out.print str.replace(/["']/, " ` " ).
any help greatly appriciatedComment
Comment