Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Created December 28, 2017 10:57
Show Gist options
  • Save mrkkr/f5b21c56c255a30df2281933e36e0cfa to your computer and use it in GitHub Desktop.
Save mrkkr/f5b21c56c255a30df2281933e36e0cfa to your computer and use it in GitHub Desktop.
Rozwijane bootstrapowe menu po najechaniu #js
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).fadeIn(200);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).fadeOut(200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment