Skip to content

Instantly share code, notes, and snippets.

@PaulGwamanda
Created September 6, 2017 15:18
Show Gist options
  • Select an option

  • Save PaulGwamanda/e71c5ee7bb1af4996dbeb1f4699cc011 to your computer and use it in GitHub Desktop.

Select an option

Save PaulGwamanda/e71c5ee7bb1af4996dbeb1f4699cc011 to your computer and use it in GitHub Desktop.
Activate Bootstrap dropdown menu on hover
$('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);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment