[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-18 Thread Canadaka
A friend helped me solve the problem. I had to recall the tooltip function in the response, I couldn't use load, so i switched to the $.ajax method $.ajax({ url: url, cache: false, dataType: "html", success: function(response){ var html = $(response

[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-17 Thread Canadaka
BUMP, anyone ?? On Sep 10, 11:52 pm, Canadaka wrote: > thanks for the response, I'm not sure how I can use live() > Here is a snippit of the javascript in question. > > > test a> > > http://ajax.googleapis.com/ajax/ > libs/jquery/1.3.2/jquery.min.js"> > >

[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-10 Thread Canadaka
thanks for the response, I'm not sure how I can use live() Here is a snippit of the javascript in question. test http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js">

[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-09 Thread Alex Weber
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