5
Vorrei mostrare il qtip solo sul mouseover sulla destinazione (<span class="percent100">
), ma voglio rimanere visibile finché non sposto il mouse all'esterno dell'elemento di contenuto generale (<div class="profileArea"
). Ecco cosa ho provato, ma non funziona.Nascondi qTip quando fuori dall'area che contiene il target
HTML:
//other HTML
//don't hide tooltip if anywhere in this div
<div class="profileArea">
<span class="profileInner">Your Profile: 0
<span class="fullProfileBar">
<span class="completedProfileBar"></span>
</span>
//start showing when hover over this span
<span class="percent100"> 100%</span>
</span>
</div>
//other HTML
Javascript:
$('.percent100').qtip({
id: 'progressBarTooltip',
content: {
text: 'Text Here'
},
position: {
my: 'top right',
at: 'bottom right',
target: $('.percent100')
},
show: {
event: 'mouseover' //shows when hover .percent100
},
hide: {
fixed: true,
//trying to hide when leave
target: $("div[class!='profileArea']")
},
});
Cambia il delegato jquery al metodo. "A partire da jQuery 1.7, .delegate() è stato sostituito dal metodo .on()." –