I want to create a tooltip, when user hovers over a link, it shows a tooltip, but does not close on mouseout. It closes only on tooltip area mouseout. In other words, I would be able to hover a link, see a tooltip, navigate to that tooltip with a mouse and do other events inside. Once I mouse out that tooltip (not a link), it closes out. I have a code which shows a tooltip on the link hover, but it hides it as soon as I try to move to that tooltip area. I am using simple live hover method:
myLink.live('mouseover mouseout', function (e) {
...show balloon...
}
how do I make it close on tooltip mouse out, but not myLink mouseout? Thanks