I have a little jquery
$(".dropdown").hide();
$('#mainnav ul li').hover(function(e){
$(this).children('.dropdown').fadeIn(250);
}, function(e) {
$(this).children('.dropdown').hide();
});
This fades in and hides each menu drop down when it's parent LI is hovered over.
I'm not convinced this is jquery is robust enough. Sometimes the dropdowns don't hide if the mouse is moved accross the parent li's at speed.
Is there anything I can do to improve the reliability of this code?
Thanks

.stop().fadeIn(250);and.stop().hide().stop()will clear all the animation queue and execute the current one. – xFortyFourx Feb 13 at 9:31