Escaping double quotes in JavaScript onClick event handler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:00:28Z http://stackoverflow.com/feeds/question/1081573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler 1 Escaping double quotes in JavaScript onClick event handler -providermah0526 2009-07-04T05:22:28Z 2009-07-04T16:47:34Z <p>The simple code block below can be served up in a static HTML page but results in a JavaScript error. How should you escape the embedded double quote in the onClick handler (i.e. \"xyz)? Note that the HTML is generated dynamically by pulling data from a database, the data of which is snippets of other HTML code that could have either single or double quotes. It seems that adding a single backslash ahead of the double quote character doesn't do the trick.</p> <pre><code>&lt;script type="text/javascript"&gt; function parse(a, b, c) { alert(c); } &lt;/script&gt; &lt;a href="#x" onclick="parse('#', false, '&lt;a href=\"xyz'); return false"&gt;Test&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081577#1081577 2 Answer by CMS for Escaping double quotes in JavaScript onClick event handler CMS 2009-07-04T05:26:11Z 2009-07-04T05:26:11Z <p>I think that the best approach is to assign the onclick handler <a href="http://en.wikipedia.org/wiki/Unobtrusive%5FJavaScript" rel="nofollow">unobtrusively</a>.</p> <p>Something like this:</p> <pre><code>window.onload = function(){ var myLink = document.getElementsById('myLinkId'); myLink.onclick = function(){ parse('#', false, '&lt;a href="xyz'); return false; } } //... &lt;a href="#" id="myLink"&gt;Test&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081581#1081581 1 Answer by landon9720 for Escaping double quotes in JavaScript onClick event handler landon9720 2009-07-04T05:29:19Z 2009-07-04T05:29:19Z <p>Did you try</p> <p>\x22</p> <p>in place of</p> <p>\"</p> <p>?</p> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081592#1081592 0 Answer by Mark A. Nicolosi for Escaping double quotes in JavaScript onClick event handler Mark A. Nicolosi 2009-07-04T05:41:10Z 2009-07-04T05:43:34Z <p>You may also want to try two backslashes <code>(\\")</code> to escape the escape character.</p> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081594#1081594 2 Answer by seth for Escaping double quotes in JavaScript onClick event handler seth 2009-07-04T05:41:44Z 2009-07-04T05:41:44Z <p>While I agree with CMS about doing this in an unobtrusive manner (via a lib like jquery or dojo), here's what also work:</p> <pre><code>&lt;script type="text/javascript"&gt; function parse(a, b, c) { alert(c); } &lt;/script&gt; &lt;a href="#x" onclick="parse('#', false, 'xyc&amp;quot;foo');return false;"&gt;Test&lt;/a&gt; </code></pre> <p>The reason it barfs is not because of JavaScript, it's because of the HTML parser. It has no concept of escaped quotes to it trundles along looking for the end quote and finds it and returns that as the onclick function. This is invalid javascript though so you don't find about the error until JavaScript tries to execute the function..</p> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081637#1081637 0 Answer by Mike H for Escaping double quotes in JavaScript onClick event handler Mike H 2009-07-04T06:14:26Z 2009-07-04T06:14:26Z <p>I am the original poster but google open ID had some problems (ok, I had some problems). Anyway, the \x22 substitution -- on the server side -- works well since the actual value needs to be retained (the alert call was just for example purposes). \x27 can also be substituted for the single quotes.</p> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1082558#1082558 1 Answer by Aseem Kishore for Escaping double quotes in JavaScript onClick event handler Aseem Kishore 2009-07-04T16:47:34Z 2009-07-04T16:47:34Z <p>It needs to be HTML-escaped, not Javascript-escaped. Change <code>\"</code> to <strong><code>&amp;quot;</code></strong>.</p>