Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

php code:

<a id="a$id" onclick="check($id,1)" href="javascript:void(0)"  class="black">Qualify</a>

How to remove onclick="check($id,1) so "Qualify" can not be clicked or "check($id,1) won't be fired. How to do it with JQuery?

share|improve this question

3 Answers

up vote 32 down vote accepted

Try this :

$('a#...').attr('onclick','').unbind('click');

(Replace ... with the id you need.)

share|improve this answer
7  
Shouldn't that be removeAttr('onclick')? – Roatin Marth Dec 22 '09 at 20:11
Yep, good point, might be cleaner, but I'm not sure it would be different from execution point of view. – subtenante Dec 23 '09 at 8:05
2  
With jQuery 1.7+ you can use on/off: stackoverflow.com/questions/209029/… – Charleston Software Associates Jan 6 '12 at 18:04

I know this is quite old, but when a lost stranger finds this question looking for an answer (like I did) then this is the best way to do it, instead of using removeAttr():

$element.prop("onclick", null);

Citing jQuerys official doku:

"Removing an inline onclick event handler using .removeAttr() doesn't achieve the desired effect in Internet Explorer 6, 7, or 8. To avoid potential problems, use .prop() instead"

share|improve this answer
I found that this is the best how to remove onlick event when you have typed it like this. <span onlick="method()">sometext>/span> The event is fully unbinded and works great – zdarsky.peter Dec 25 '12 at 21:21

Try this if you unbind the onclick event by ID Then use:

$('#youLinkID').attr('onclick','').unbind('click');

Try this if you unbind the onclick event by Class Then use:

$('.className').attr('onclick','').unbind('click');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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