Drop down hover _tk

Thank goodness I found this:

 

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

elegant and easy peasy

thanks bsngr!!

Posted in

chm