I have some HTML with an onclick attribute. I want to override that attribute using jQuery. Is there any way to remove the click handler using jQuery? Using unbind doesn’t work.
I have some HTML with an onclick attribute. I want to override that attribute
Share
Try the
.removeAttr()function:
jsfiddle demo.
Once you’ve got rid of the
onclickattribute you could attach your own click handler.