[jQuery] Using Live Query with plugins

[jQuery] Using Live Query with plugins


Hello, I am having some trouble getting Live Query to work in
conjunction with some of my plugins. While attempting to use Live
Query doesn't "break" the plugins under normal circumstances, it does
not solve the problem of the plugins not working when they're used
inside of content that has been AJAX'd in.
I've tried to routes. Changed this:
$('.jtt').tooltip({
track: true,
delay: 0,
showURL: false,
showBody: " -- ",
opacity: 0.85,
positionLeft: true,
top: 20
});
To this:
$('.jtt')
.livequery(function(){
$(this).tooltip({
track: true,
delay: 0,
showURL: false,
showBody: " -- ",
opacity: 0.85,
positionLeft: true,
top: 20
});
});
And also tried:
if(jQuery.livequery)
jQuery.livequery.registerPlugin("tooltip");
Any insight on why neither of those approaches work would be
appreciated. Thank you!