User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:38:39Z http://stackoverflow.com/feeds/user/133046 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>