I have a drop down menu that works really well but I want it to stay dropped down so to speak for 500ms after user hovers out of the box.
I tried to use .delay(500) but the animation seems to get stuck and the menu doesn't disappear.
Here's my code.
$(function(){
$("ul.dropdown li ul").hide(0);
$("ul.dropdown li").hover(function(){
$(this).addClass("hover");
$('ul:first',this).show(0);
}, function(){
$(this).removeClass("hover");
$('ul:first',this).delay(500).hide(0);
});
$("ul.dropdown li ul li:has(ul)").find("a:first").append("»");
});