I want to use the tipsy tooltip as a toolbar. When hovering a link I would like the toolbar to show, let’s say a div, and when entering the toolbar area I want it to stay visible, not hide. So my questions are:
- How do I show a hidden div?
- How do I keep the tooltip visible when entering the tooltip area?
Tipsy supports “manual” triggering. So what you’d want to do is have the “onmouseover” event on your link call the
tipsy('show')function, and then for the hiding part, well… probably do two things: when you do your show, set a timeout that auto-hides after x seconds. Then also set a onmouseout event for your tooltip that callstipsy('hide').EDIT: changed the code to something that actually works, see here: http://jsfiddle.net/6FpM8/3/ Thanks to @Josh for poking me to get it working.