I have some code which adds a tooltip to all links. Now, the page keep changing with AJAX - how can I track these changes and add tooltips to links which are added to the document by AJAX?
I thought this might work:
$(document).live('change', function(){
//code...
});
But I'm guessing there's a smarter/more efficient method to work this out. Any ideas?
Note: I can only use jQuery 1.3.2