I'm using the Tooltip()
from Twitter-Bootstrap
. When hovered over an element, a tooltip
shows up. But it stays there unless you move your mouse away from it.
How can I make it dissapear after a few seconds it popped up, in stead of waiting until mouse moves away from the element?
shown.bs.tooltip
event. But it's not dissapearing. Complete function:function toolTipIsVisible() { setTimeout( function () { $(this).tooltip('hide') }, 2000); }
– Coff