[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 =

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

2009-09-17 Thread Canadaka
BUMP, anyone ?? On Sep 10, 11:52 pm, Canadaka canad...@gmail.com wrote: thanks for the response, I'm not sure how I can use live() Here is a snippit of the javascript in question. div id=tweets/div div id=statica href=# title=this is thetooltiptexttest/ a/div script type=text/javascript

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

2009-09-11 Thread Canadaka
thanks for the response, I'm not sure how I can use live() Here is a snippit of the javascript in question. div id=tweets/div div id=statica href=# title=this is the tooltip texttest/ a/div script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js/script

[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...

[jQuery] Re: Tooltips out of position with imagemaps

2009-04-01 Thread fredriley
DOUBLE AARRGGH!! Sorry, I just realised my simple, stupid mistake - I'd forgotten to link in the jquery.tooltip.css file in the HTML docs. Now I have done so, the tooltips work fine. D'OH!!! :(( So there's no problem at all. Thanks again to Jörn for this and other plugins, which are all the

[jQuery] Re: Tooltips

2008-05-21 Thread MartinS
Great! Do you have a demopage where I can see it alive? Thnx! On 19 mei, 23:39, Jörn Zaefferer [EMAIL PROTECTED] wrote: Actually the code is already here:http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.js with ugly

[jQuery] Re: Tooltips

2008-05-21 Thread Jörn Zaefferer
No, not yet. Jörn On Wed, May 21, 2008 at 8:25 AM, MartinS [EMAIL PROTECTED] wrote: Great! Do you have a demopage where I can see it alive? Thnx! On 19 mei, 23:39, Jörn Zaefferer [EMAIL PROTECTED] wrote: Actually the code is already

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
I've have something similar as a plugin on a project. Its not polished at all, but already works with keyboard events (reacts to focus/blur instead of click). If interested, I'll upload the current version to give you a starting point. Jörn On Sun, May 18, 2008 at 11:37 AM, MartinS [EMAIL

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
Actually the code is already here: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.js with ugly css: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.css Requires the delegate plugin: http://dev.jquery.com/view/trunk/plugins/delegate/jquery.delegate.js Jörn On

[jQuery] Re: Tooltips

2008-05-18 Thread kareneliot
Something like that would be possible with jQuery, but I doubt if it would be a simple 'plugin' for jQuery, more something you'd have to build yourself. But it would be quite straightforward to do it.