Escaping double quotes in JavaScript onClick event handler - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T07:00:28Zhttp://stackoverflow.com/feeds/question/1081573http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler1Escaping double quotes in JavaScript onClick event handler-providermah05262009-07-04T05:22:28Z2009-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><script type="text/javascript">
function parse(a, b, c) {
alert(c);
}
</script>
<a href="#x" onclick="parse('#', false, '<a href=\"xyz'); return false">Test</a>
</code></pre>
http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081577#10815772Answer by CMS for Escaping double quotes in JavaScript onClick event handlerCMS2009-07-04T05:26:11Z2009-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, '<a href="xyz');
return false;
}
}
//...
<a href="#" id="myLink">Test</a>
</code></pre>
http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081581#10815811Answer by landon9720 for Escaping double quotes in JavaScript onClick event handlerlandon97202009-07-04T05:29:19Z2009-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#10815920Answer by Mark A. Nicolosi for Escaping double quotes in JavaScript onClick event handlerMark A. Nicolosi2009-07-04T05:41:10Z2009-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#10815942Answer by seth for Escaping double quotes in JavaScript onClick event handlerseth2009-07-04T05:41:44Z2009-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><script type="text/javascript">
function parse(a, b, c) {
alert(c);
}
</script>
<a href="#x" onclick="parse('#', false, 'xyc&quot;foo');return false;">Test</a>
</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#10816370Answer by Mike H for Escaping double quotes in JavaScript onClick event handlerMike H2009-07-04T06:14:26Z2009-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#10825581Answer by Aseem Kishore for Escaping double quotes in JavaScript onClick event handlerAseem Kishore2009-07-04T16:47:34Z2009-07-04T16:47:34Z<p>It needs to be HTML-escaped, not Javascript-escaped. Change <code>\"</code> to <strong><code>&quot;</code></strong>.</p>