javascript - JQuery-Plugin-Tooltipster: "onlyOne" does not work if an Element with tooltip got child with additional tooltip -
<div id="parent" title="parent tooltip" style="width: 500px"> parent! <div id="child" title="child tooltip" style="width: 100px"> child! </div> </div> if hover child element directly, cascaded tooltips show. neither explicit setting of "onlyone" nor different delay child-tootlip help.
is possible show 1 child without writing own hover-triggers?
the jquery code (using v 1.8.2) follows:
$("div").tooltipster({onlyone: true, delay: 100}); after cleaning confusion , ignorance of jqueryui widget use , styling again. want use tooltipster plugin in future because offers features don't see widget. question remains unanswered...
i not seeing issue here with:
$('div').tooltip(); demo: http://jsfiddle.net/dwaddell/quxkb/
what version of jquery using, may have fixed tooltip plugin rather new.
Comments
Post a Comment