diomed
12/13/2016 - 11:49 AM

boostrap hover over menu so it nicely slides down

boostrap hover over menu so it nicely slides down

$(document).ready(function() {
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn();
}, 
function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut().hover(function() {
$(this).stop(true, true);});
});
});