How to unbind events from HTML element using jQuery
Mehul Prajapati
we can use off handler to remove events to particular element.$( "body" ) .off( "click", "#theone", flash );unbind handler to remove particular event. $('p').unbind('click') and remove all assign events : $('p').unbind()