Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 460 Bytes

no-live.md

File metadata and controls

22 lines (14 loc) · 460 Bytes

jQuery.fn.live() has been removed, use jQuery.fn.on() instead

.live() was removed in jQuery 1.9 - use .on() instead.

Rule Details

Examples of incorrect code for this rule:

$('.something').live('click', function() {})

Examples of correct code for this rule:

$('body').on('click', '.something', function() {})

Further Reading