I'm working on a project with several animations; fades, slides, and regular pixelanimation.

My client hates that jQuery "remembers" how many times you have activated a animation, and therefore continues animating (cueing) when you leave (unHover ..if that's even a word :-P).

I've found a solution, that only works on the pixelanimations, and not on the slideDowns, and fades. It is to set stop() before animation. "stop().animation".

Is there a solution that works everywhere?

Thank you!

link|improve this question

76% accept rate
feedback

1 Answer

up vote 3 down vote accepted

.stop() will work, just pass it arguments for those other cases (or in all cases), like this:

.stop(true, true).animate(/* options */);

The second true tells it to jump to the end of the animation, which fixes issues like a slide remembering a half-way-down height and such.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.