Hi Jimmyville,
Thanks for the tip. That is actually what I try to do.
function myFunc() {
$("div.hjelpNavKnapp > a").tooltip({
tip: "div.tooltip",
position: "bottom right",
offset: [-19, 13],
relative: true,
effect: 'slide'
}
);
}
I have wrapped the tooltip code into a function that I call using a different ajax library than jQuery called Gaiaware.
The ajax library calls the javascript using the following code:
document.observe("dom:loaded", myFunc());
This doesn't work though. As it does not add tooltips to the new controller. Could it be my other javascript framework that does things in the wrong order?