JQuery Clear Click Event
$( "#foo" ).unbind("click");
Mingles444
$( "#foo" ).unbind("click");
//Remove all event handlers from all paragraphs:
$( "p" ).off();
//Remove all delegated click handlers from all paragraphs:
$( "p" ).off( "click", "**" );
$('#foo').unbind("keypress");
$('#btnSave').unbind();