$('.dropdown').hover( function(){ $(this).addClass('open').find('ul').stop(true,true).hide().slideDown(0); }, function(){ $(this).removeClass('open').find('ul').stop(true,true).slideUp(0); } ); $('.dropdown-menu li').unbind('mouseover').unbind('mouseout'); });