I use the knob plugin. jsFiddle It worked greatly till I added the following code to change values on hover (line 327):
.bind( "mousemove"
, function (e) {
e.preventDefault();
s._xy()._mouse(e);
}
)
I need to show this after user clicks (release function) the dial:
<div class="tooltip">Tooltip...</div>
line 673:
$(".dial").knob({
'release': function ()
{
$(".tooltip").slideDown();
$(".tooltip").delay(1500).slideUp();
}
});
But it keeps repeating after clicking the dial. Slides down and up every 1,5 sec. I want to stop it from repeating. How to fix it?