vote up 3 vote down star
1

I'd like to change the value of the onclick attribute on an anchor. I want to set it to a new string that contains JavaScript. (That string is provided to the client-side JavaScript code by the server, and it can contains whatever you can put in the onclick attribute in HTML.) Here are a few things I tried:

  • Using jQuery attr("onclick", js) doesn't work with both Firefox and IE6/7.
  • Using setAttribute("onclick", js) works with Firefox and IE8, but not IE6/7.
  • Using onclick = function() { return eval(js); } doesn't work because you are not allowed to use return is code passed to eval().

Anyone has a suggestion on to set the onclick attribute to to make this work for Firefox and IE 6/7/8? Also see below the code I used to test this.

<html>
    <head>
        <script type="text/javascript"
                src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
        <script type="text/javascript">
            $(document).ready(function(){
                var js = "alert('B'); return false;";
                // Set with JQuery: doesn't work
                $("a").attr("onclick", js);
                // Set with setAttribute(): at least works with Firefox
                //document.getElementById("anchor").setAttribute("onclick", js);
            });
        </script>
    </head>
    <body>
        <a href="http://www.google.com/" id="anchor" onclick="alert('A'); return false;">Click</a>
    </body>
</html>
flag
"with or with jQuery" would you like jQuery with that jQuery? – Sam Hasler May 5 at 19:57

9 Answers

vote up 6 vote down check

Realistically - You shouldn't be using onClick any more if you start moving to jQuery.

        $(document).ready(function(){
            var js = "alert('B:' + this.id); return false;";
            // creates a function from the "js" string
            var newclick = eval("(function(){"+js+"});");
            // clears onclick then sets click
            $("#anchor").attr('onclick', '').click(newclick);
        });

That should cancel the onClick function though - and keep your "javascript from a string" as well.

The best thing to do would be to remove the onclick="" from the A element in the HTML code and switch to using the "Unobtrusive" method of binding an event to click.

You said:

Using onclick = function() { return eval(js); } doesn't work because you are not allowed to use return is code passed to eval().

No - it won't, but onclick = eval("(function(){"+js+"})"); will wrap the 'js' variable in a function enclosure.

link|flag
vote up 0 vote down

BTW, without JQuery this could also be done, but obviously it's pretty ugly as it only considers IE/non-IE:

if(isie)
   tmpobject.setAttribute('onclick',(new Function(tmp.nextSibling.getAttributeNode('onclick').value)));
else
   $(tmpobject).attr('onclick',tmp.nextSibling.attributes[0].value); //this even supposes index

Anyway, just so that people have an overall idea of what can be done, as I'm sure many have stumbled upon this annoyance.

link|flag
vote up 0 vote down

Note that following gnarf's idea you can also do:

var js = "alert('B:' + this.id); return false;";
var newclick = eval("(function(){"+js+"});");
$("a").get(0).onclick = newclick;

That will set the onclick without triggering the event (had the same problem here and it took me some time to find out).

link|flag
vote up 0 vote down

If you don't want to actually navigate to a new page you can also have your anchor somewhere on the page like this.

<a id="the_anchor" href="">

And then to assign your string of JavaScript to the the onclick of the anchor, put this somewhere else (i.e. the header, later in the body, whatever):

<script>
    var js = "alert('I am your string of JavaScript');"; // js is your string of script
    document.getElementById('the_anchor').href = 'javascript:' + js;
</script>

If you have all of this info on the server before sending out the page, then you could also simply place the JavaScript directly in the href attribute of the anchor like so:

<a href="javascript:alert('I am your script.'); alert('So am I.');">Click me</a>
link|flag
vote up -2 vote down

Came up with a quick and dirty fix to this. Just used <select onchange='this.options[this.selectedIndex].onclick();> <option onclick='alert("hello world")' ></option> </select>

Hope this helps

link|flag
Mmmh... sorry but I don't see how this is answer to the original question. – Alessandro Vernet Nov 2 at 22:18
vote up 0 vote down

just use jQuery bind method !jquery-selector!.bind('event', !fn!);

See here for more about events in jQuery

link|flag
vote up 0 vote down

One gotcha with Jquery is that the click function do not acknowledge the hand coded onclick from the html.

So, you pretty much have to choose. Set up all your handlers in the init function or all of them in html.

The click event in JQuery is the click function $("myelt").click (function ....).

link|flag
Tom, I can't use $("myelt").click() here because the code I want to run is in a string. (See my comments to other answers here as well.) – Alessandro Vernet May 5 at 20:10
Ah. I see how about: function js() { alert('B'); return false; } – Tom Hubbard May 5 at 20:23
vote up -1 vote down

If want to change what happens "onClick" maybe you should bind an click handler instead, and "prevent default" from it?

$("#something").click(function(){
  //do your js here
  return false;
});
link|flag
The question is: how to I run that js code which I have in a string? I can't do eval(js), because js can contain a "return ..."). – Alessandro Vernet May 5 at 20:09
vote up -1 vote down

try

$("a").click(function(){
    alert("I was clicked!");
    return false;
});
link|flag
@Zack, I can't do this, because the alert("I was clicked!"); in your above example is stored in a string in my case (called js in my question). – Alessandro Vernet May 5 at 20:08

Your Answer

Get an OpenID
or

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