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 usereturn
is code passed toeval()
.
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>
You shouldn't be using
onClick
any more if you are using jQuery. jQuery provides its own methods of attaching and binding events. See.click()
That should cancel the
onClick
function - 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 also said:
No - it won't, but
onclick = eval("(function(){"+js+"})");
will wrap the 'js' variable in a function enclosure.onclick = new Function(js);
works as well and is a little cleaner to read. (note the capital F) -- see documentation onFunction()
constructorsIf you don't want to actually navigate to a new page you can also have your anchor somewhere on the page like this.
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):
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: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 ....).
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
BTW, without JQuery this could also be done, but obviously it's pretty ugly as it only considers IE/non-IE:
Anyway, just so that people have an overall idea of what can be done, as I'm sure many have stumbled upon this annoyance.
Note that following gnarf's idea you can also do:
That will set the onclick without triggering the event (had the same problem here and it took me some time to find out).