Bec
0
Q:

how to remove event listener in jquery

//Remove all event handlers from all paragraphs:

$( "p" ).off();

//Remove all delegated click handlers from all paragraphs:

$( "p" ).off( "click", "**" );
2
// adding an event listener using jQuery
$('h1').click(()=>{
    console.log('clicked')
})

// unbinding event listener
$('h1').unbind()
-1

New to Communities?

Join the community