Try adding stop(true,true) before either of the slide calls. That jumps to the end of the animation and clears the queue. But hoverIntent should be preventing this from happening, to a certain extent.
- ricardo On Dec 3, 12:40 pm, SmpleJohn <[EMAIL PROTECTED]> wrote: > It's amazing I can't find anything helpful on this. When I use hover > over and out with and animating technique, then mouse over it quickly, > it bugs out. > > Here's my code: > > $("#header").hoverIntent( > function(over){ > $("#header #menu").slideDown(); > }, > function(out){ > $("#header #menu").slideUp(); > } > ); > > Now, as mentioned, the problem occurs when you mouse over and out > really quickly. I tried adding the stop(), but if you mouse over and > out quickly with that, it'll only animate to a certain height and > won't show the entirety of the content. Any suggestions?