Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 430 Bytes

File metadata and controls

22 lines (14 loc) · 430 Bytes

jQuery.fn.die() has been removed, use jQuery.fn.off() instead

.die() was removed in jQuery 1.9 - use .off() instead.

Rule Details

Examples of incorrect code for this rule:

$('.something').die('click')

Examples of correct code for this rule:

$('body').off('click', '.something')

Further Reading