I have a task which I can’t quite figure out and need a pro to take a look at. I came across this great jQuery tutorial from “webdesignerwall” jQuery For Designers, under tutorials. This is an example of a simple jQuery function in which you hover over a button and a tool tip pops up. This part is pretty simple, and effective. The only problem is that if you repeataly hover over the button say 10x, the box hovers ten times even when mouse is off. What I want it to do is stop after you mouse off the button, and stop looping the animation. If you could help that would be great, thanks.
jQuery will queue up animations by default, you can empty the queue (stopping the animation ‘loop’) by applying $(elem).stop() to the element in question.