.live()
was removed in jQuery 1.9 - use .on()
instead.
Examples of incorrect code for this rule:
$('.something').live('click', function() {})
Examples of correct code for this rule:
$('body').on('click', '.something', function() {})
.live()
was removed in jQuery 1.9 - use .on()
instead.
Examples of incorrect code for this rule:
$('.something').live('click', function() {})
Examples of correct code for this rule:
$('body').on('click', '.something', function() {})