Using the jQuery UI tooltip, I would like to keep the tooltip open if I\'m over the target, or if I\'m over the tooltip itself.
I\'m thinking I can use the close cal
This is a simple solution for div elements:
$(function() { $("#mydiv").tooltip({ effect: 'slide', content: 'loading...', open: function (event, ui) { $(ui.tooltip).appendTo(this); } }); });
http://jsfiddle.net/4YDGp/10/