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()
using $('btn').unbind('click')
$(‘#btnSave’).unbind(‘click’)