User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:38:39Zhttp://stackoverflow.com/feeds/user/133046http://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>