Drop down hover _tk
September 13, 2016
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 Uncategorized