$(".navbar>ul>li").each(function() { $(this).mouseover(function() { $(this).children('').next('.menu').stop(true, true).delay(100).slideDown(200); }); $(this).mouseleave(function() { $(this).children('').next('.menu').stop(true, true).delay(100).slideUp(100); }); });