i create a menu and i show and hide submenu on jquery via hover event like following code
is any way, submenu show or hide after some milisecond mouse stay over them?
$(" #nav li").hover(function(){
$(this).find('ul:first').show(600);
},function(){
$(this).find('ul:first').fadeOut(400);
});
}
You may want to check out hoverintent
http://cherne.net/brian/resources/jquery.hoverIntent.html