vote up 1 vote down star

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.

<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>
flag

6 Answers

vote up 1 vote down check

Did you try

\x22

in place of

\"

?

link|flag
vote up 1 vote down

It needs to be HTML-escaped, not Javascript-escaped. Change \" to &quot;.

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

While I agree with CMS about doing this in an unobtrusive manner (via a lib like jquery or dojo), here's what also work:

<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>

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..

link|flag
Downvote. You do NOT need a framework for something like this! – Charlie Somerville Jul 4 at 6:20
+1 for &quot;... – Greg Jul 4 at 6:24
vote up 0 vote down

You may also want to try two backslashes (\\") to escape the escape character.

link|flag
Classic. Stackoverflow ate one of your backslashes and displayed only the other one. I fixed it for you. – Nosredna Jul 4 at 5:44
Oops, thanks. Wonder if that happened to the OP. – Mark A. Nicolosi Jul 4 at 14:36
vote up 2 vote down

I think that the best approach is to assign the onclick handler unobtrusively.

Something like this:

window.onload = function(){
    var myLink = document.getElementsById('myLinkId');
    myLink.onclick = function(){ 
        parse('#', false, '<a href="xyz');
        return false;
    }
}

//...


<a href="#" id="myLink">Test</a>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.