jQuery die() Method
Example
Remove all event handlers added with the live() method for all <p> elements:
$("p").die();
Try it Yourself »
Definition and Usage
The die() method was deprecated in jQuery version 1.7, and removed in version 1.9. Use the off() method instead.
The die() method removes one or more event handlers, added with the live() method, for the selected elements.
Syntax
$(selector).die(event,function)
Parameter | Description |
---|---|
event | Required. Specifies one or more event handlers to remove. Multiple event values are separated by space. Must be a valid event |
function | Optional. Specifies a specific function to remove |
Try it Yourself - Examples
Remove
one specific event handler
How to use the die() method to remove only one specific event
handler from the selected elements.