1
Reply

How to unbind events from HTML element using jQuery

Mehul Prajapati

Mehul Prajapati

Jan 10, 2018
144
0

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

    Mehul Prajapati
    January 10, 2018
    0