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?
|
php code:
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? |
|||
|
|
|
Try this :
(Replace ... with the id you need.) |
|||||||||||
|
|
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():
Citing jQuerys official doku:
|
||||
|
|
Try this if you unbind the onclick event by ID Then use:
Try this if you unbind the onclick event by Class Then use:
|
||||
|
|