I'm not sure I understand completely, if you mean that the tooltip doesnt work with elements dynamically generated via load(), then it could be a binding issue... try binding an alert() and see if that works. in case it doesn't its because when the event was bound the elements didn't exist... the solution is to use live():
$('.tooltipElement').live(......) On Sep 9, 1:46 am, Canadaka <canad...@gmail.com> wrote: > I have some simple tooltips on my site that load the content of the > "title" tag into the tooltip. I am currently using this > pluginhttp://cssglobe.com/post/4380/easy-tooltip--jquery-pluginbut I have > tried several others. > > They all work fine for static elements, but the main content of my > pages are loaded by an ajax load() call. The tooltips don't work on > any this content loaded via ajax. Why is this happening and is there a > way to fix this? Or maybe a tooltip plugin that will work for this?