I\'m looking at old code. I\'m seeing that for elements that get added with ajax, there\'s lots of livequery code. Is livequery not needed anymore with the newer versions of
You have to use on() and attach the event to a parent or body. Ex :
$('#obj').livequery('click', function() { ... });
$('#obj').livequery(function() { ... });
become
$('body').on('click', '#obj', function() { ... });
$('body').on('DOMNodeInserted','#obj', function() { ... });
note that DOMNodeInserted is IE9+