Created
September 6, 2017 15:18
-
-
Save PaulGwamanda/e71c5ee7bb1af4996dbeb1f4699cc011 to your computer and use it in GitHub Desktop.
Activate Bootstrap dropdown menu on hover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('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