I had jQuery Tools Tooltips working with jQuery 1.7.1. However, I had to update my jQuery to 1.8.1 to address a sweet IE8 and lower problem. The tooltips no longer work with jQuery 1.8.1. Anyone know a quick fix? Thanks.
Update - here is the JS I use to call the plugin. Also using livequery.
$(function() {
$("th a[title], a.tipin[title]").livequery(function(){
$(this).tooltip({
offset: [-30, 0],
opacity: 0.9
}).dynamic({ bottom: { direction: 'down' } });
});
$("a.tip[title]").livequery(function(){
$(this).tooltip({
offset: [0, 30],
position: 'center right',
opacity: 0.9
}).dynamic({ bottom: { direction: 'down' } });
});});