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...

https://github.com/iamceege/tooltipster/issues/32

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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -