5
Ich würde gerne zeigen die qtip nur auf Mouseover das Ziel (<span class="percent100">
), aber ich möchte sichtbar bleiben, bis ich die Maus außerhalb der allgemeinen containing-Element (<div class="profileArea"
) bewegen. Hier ist, was ich versucht habe, aber es funktioniert nicht.Hide qTip, wenn außerhalb des Bereichs mit Ziel
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']")
},
});
Ändern Sie den jquery-Delegaten in die on-Methode. "Seit jQuery 1.7 wurde .delegate() durch die .on() Methode ersetzt." –