I am using the jQuery Tooltip Plugin from http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/. Great plugin. I am AJAX loading some content into my pages and am attempting to use Live Query to bind the tooltips to some of those links.
Is not working: $('.thumb-ttr').livequery(function(){ $('.thumb-ttr').tooltip({track:true, delay:0, showURL:false, showBody:' || ', opacity:0.85}); }); I also made an unsuccesful try using a focus event: $('.thumb-ttr').livequery('focus', function(event){ $('.thumb-ttr').tooltip({track:true, delay:0, showURL:false, showBody:' || ', opacity:0.85}); }); Any help is appreciated! Thank you.