Last active
August 29, 2015 14:23
-
-
Save loorlab/155bf309143f6ede9ca5 to your computer and use it in GitHub Desktop.
Link parent for Dropdown menu on Bootstrap
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
$(function(){ | |
$(".dropdown").hover( | |
function() { | |
$('.dropdown-menu', this).stop( true, true ).fadeIn("fast"); | |
$(this).toggleClass('open'); | |
$('b', this).toggleClass("caret caret-up"); | |
}, | |
function() { | |
$('.dropdown-menu', this).stop( true, true ).fadeOut("fast"); | |
$(this).toggleClass('open'); | |
$('b', this).toggleClass("caret caret-up"); | |
}); | |
$('.navbar .dropdown > a').click(function(){ | |
location.href = this.href; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment