Remove all JS click events

I manage some old legacy XHTML code that has onclick="foo()" elements in the XHTML. There is also some JQuery that adds click() events. I wanted to completely clean up all click events from a given element. I made a simple JQuery function to remove the onclick HTML events, and JQuery click events.

function super_clean(jselector) {                                                                                               
   return $(jselector).removeAttr('onclick').unbind('click');                                                                   
}
Leave A Reply
All content licensed under the Creative Commons License