I am trying to unbind event handlers (click) from all a-tags, and somehow it is not working. Do you guys know why?
// Remove eventhandlers
row.find('a').each(function(){
$(this).unbind('click');
alert($(this).attr("onClick"));
});
It will always output the current onClick function.
Thanks