views:

21

answers:

1

I there an option to close cluetip when the mouse is of from the link? There is mouseOutClose option but it doesn't close cluetip if you don't hover the cluetip itself first.

Here is an example:

http://plugins.learningjquery.com/cluetip/demo/ - the first link under the jTip Theme

A: 

It's because the sticky option is set to true...

AlbertVanHalen
Yes and it should be... I have some links in cluetip so I don't want it to disappear when the mouse is over the cluetip... sticky option is the only way to do that.
Levani
So that's the answer to your question isn't it...
AlbertVanHalen
I need to change the way cluetip closes... When the mouse is out of link it should close automatically but when the mouse is over the cluetip itself it shouldn't. cluetip can be closed using $(document).trigger('hideCluetip'); function so I tried adding onmouseout="$(document).trigger('hideCluetip');" but it closes cluetip even the mouse is over the cluetip itself... Any ideas?
Levani