Hello. There is such HTML:
<img src="/img.png" onmouseout="Hide()" onmouseover="Show()" tooltip data-placement="bottom" data-title="Tooltip on right" alt="lol" class="img-thumbnail navbar-left" style="padding: 2px; width: 40px; height: 40px;"> There is such a JS:
function Hide() { $("[tooltip]").tooltip('hide'); } function Show() { $("[tooltip]").tooltip('show'); } How to make a script so as not to hide the tooltip while the mouse is pointing at it? (On the tool itself, and not on the object called by it).
Actually for this and made the event guidance and loss of guidance in a separate function. But I have no idea how to extend it to the tooltip itself .. Any thoughts?