Brandon Aaron wrote:

Sure but I wonder what that would look like? Could you provide a more
detailed use-case?
Sure. Basically it jus this:

tooltipElements.hover( function() {
 tooltip.html( this.title ).fadeIn();
}, function() {
 tooltip.hide();
});

With that code, hovering over multiple tooltipped elements causes the fadeIn to be queued quite a lot of times, without stopping anytime soon. I'd need something like this:

tooltipElements.hover( function() {
 tooltip.html( this.title ).fadeIn();
}, function() {
 tooltip.dequeue().hide();
});

While writing this I get the idea that this is a totally different issue... But maybe you can help with this, too :-)

--
Jörn Zaefferer

http://bassistance.de

Reply via email to