This is an old question, but I am surprised that there is no answer, because it is simple. You must use on () and attach the event to the parent or body. Example:
$('#obj').livequery('click', function() { ... }); $('#obj').livequery(function() { ... });
to become
$('body').on('click', '#obj', function() { ... }); $('body').on('DOMNodeInserted','#obj', function() { ... });
note that DOMNodeInserted is IE9 +
Reign. 85
source share