Skip to content

Instantly share code, notes, and snippets.

@dotJoel
Created July 11, 2013 19:48
Show Gist options
  • Save dotJoel/5978622 to your computer and use it in GitHub Desktop.
Save dotJoel/5978622 to your computer and use it in GitHub Desktop.
jQuery snippet that makes bootstrap's dropdown menus slide. stolen from: https://gist.github.com/jalcine/3013002#comment-840867
$(document).ready(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();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment