jsFiddle here: http://jsfiddle.net/_mtr/bvs6w

Basically I have an unordered list consisting of two elements: a title and a span of a few rows of text. The span is toggled on hover, but if the user hovers on and off too quickly, the contents are clipped. What am I missing in my jQuery to ensure that this doesn't happen and the span is always hidden or displayed properly?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Simply use .stop(true, true) instead of just .stop(). The first parameter is for clearQueue while the second one is for jumpToEnd, which are both false by default.

Here's your updated code.

Hope this helps !

link|improve this answer
feedback

That stop() that you put in there to prevent queueing...

It's basically "freezing" your spans in the middle of having their height animated. Try checking them out in Firebug or Chrome's Inspector. You'll see that they all have heights like 0.8649px.

link|improve this answer
feedback

You may want to remove stop() and use a plugin such as hoverIntent.

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.