I have an achor like this

<a href='#' onclick='return showform(this)'>click me</a>

But I want to be able to override the onclick function, how to do this in jquery?

because it seems when I add

$('a').click( function() { alert('hi there!'); } );

the new click handler is not overriding the old one

link|improve this question

46% accept rate
why <a href='#' onclick='return showform(this)'>click me</a>? structure/content and behavior should be separate. en.wikipedia.org/wiki/Unobtrusive_JavaScript – Wondering Dec 18 '09 at 13:29
I have removed the onclick function and rely everything on jquery because it seems more flexible that way... Thank you all for the responses :) – strike_noir Dec 25 '09 at 4:35
feedback

3 Answers

Have you tried something like this:

$("a").removeAttr("onclick");
link|improve this answer
Old post, but this is definitely the method that has been working for me within the ready() function – htmlr Feb 19 at 13:50
feedback

In your case the onCick event is overriding the jQuery one. What you might be able to do is:

$('a').unbind('click').click(function{
    alert('why hello there children.');
})

But I believe this would have to be included after the

<a href='#' onclick='return showform(this)'>click me</a>

That said, you should really not be using onClicks anyway... it makes the code really hard to maintain and change (as you have found out).

link|improve this answer
If you're following Yahoo, all scripts are included at the end of the page anyway... – Skilldrick Dec 18 '09 at 12:14
That is true, I figured I should point that part out though, as the last onclick event should override the rest no? – SeanJA Dec 18 '09 at 12:15
It depends when $('a').unbind() is called. If it's in $(document).ready() then it could be in the head and still work. – Skilldrick Dec 18 '09 at 12:16
I am not 100% certain, but I think that unbind can't remove a handler that hasn't been set up with jQuery. – kgiannakakis Dec 18 '09 at 12:17
Ya, I am not sure about that either, I tend to not write my code with onClicks. – SeanJA Dec 18 '09 at 12:48
show 1 more comment
feedback

If you're using jQuery like this, you don't want any handlers in the HTML. Can't you just remove the onClick attribute?

If you're worried about breaking stuff, search and replace on:

 onclick='return showform(this)'

and replace with

class='showform'

Then you can do:

$('a.showform').click(function (e) {
    e.preventDefault();
    return showform(this);
});

which will keep your existing handlers working.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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