[jQuery] Hover Repeats Over and Over...
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?