Skip to content

Instantly share code, notes, and snippets.

@kennyeliason
Created May 8, 2018 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennyeliason/c50d469285bafdebab5a3a32db658d2a to your computer and use it in GitHub Desktop.
Save kennyeliason/c50d469285bafdebab5a3a32db658d2a to your computer and use it in GitHub Desktop.
bootstrap4 menu magic
// Bootstrap menu magic
$('.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;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment