Created
July 2, 2014 06:28
-
-
Save the-affy/631558f1a3af5c0954cb to your computer and use it in GitHub Desktop.
bootstrap3 on hover dropdown with link supported in parent
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
| <script> | |
| jQuery(function($) { | |
| $('.navbar .dropdown').hover(function() { | |
| $(this).find('.dropdown-menu').first().stop(true, true).delay(250).slideDown(); | |
| }, function() { | |
| $(this).find('.dropdown-menu').first().stop(true, true).delay(100).slideUp(); | |
| }); | |
| $('.navbar .dropdown > a').click(function(){ | |
| location.href = this.href; | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment