> Can it be done? Can I add the tooltip to the dynamically generated > code? Seems that the tooltip code go wrong when acts before the div > is created .. is that the problem? how can I solve it?
I wouldn't say it goes "wrong" -- it just attaches to whatever it sees in the DOM at the time. Why don't you just instantiate a(nother) Tips class onSuccess of the Ajax call? The other approach, I'd think, would be to attach the Tips to a a set of hidden "shell" divs that are always present from domready on, then populate those DIVs from the Ajax response (don't overwrite them). --Sandy
