JQuery Tooltip() and Thickbox

Soldato
Joined
14 Feb 2006
Posts
4,644
Location
Surrey, UK
Quite a specific question this, but I'm hoping someone can help!

I'm using Thickbox to display HTML pages in a Lightbox style window. On the same page I am using JQuery's Tooltip plugin to create "on-hover" tooltips for link elements.

Code:
$("a").Tooltip({
    track: true, 
    delay: 100, 
    showURL: false, 
});

I think problem arises because Tooltip and Thickbox will not work on the same page. This is down to the fact that in a link such as the following:
Code:
<a href="#" title="Click Me" class="linkclass">Click</a>
the 'title' attribute is used:
By Thickbox for the Box/Popup title
By Tooltip() for the tooltip text

So I'm assuming the two systems interfere and it messes up.

Can anyone suggest a way of stopping this happening?

Very grateful for any help!
Jon
 
Back
Top Bottom