Skip to content

Instantly share code, notes, and snippets.

@vedranjaic
Created December 30, 2014 22:32
Show Gist options
  • Save vedranjaic/24a509260c6fa1166d6b to your computer and use it in GitHub Desktop.
Save vedranjaic/24a509260c6fa1166d6b to your computer and use it in GitHub Desktop.
Bootstrap nav dropdown on hover
$(document).ready(function(){
$(".dropdown").hover(
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop( true, true ).slideDown("fast");
$(this).toggleClass('open');
},
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop( true, true ).slideUp("fast");
$(this).toggleClass('open');
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment