Mehul Prajapati
How to unbind events from HTML element using jQuery
By Mehul Prajapati in JQuery on Jan 10 2018
  • Mehul Prajapati
    Jan, 2018 10

    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()

    • 0