event unbind not working code example
Example 1: jquery clear click event
$( "#foo" ).unbind("click");
Example 2: remove add event listener jquery
//Remove all event handlers from all paragraphs:
$( "p" ).off();
//Remove all delegated click handlers from all paragraphs:
$( "p" ).off( "click", "**" );