Skip to content

Instantly share code, notes, and snippets.

@chrisblackwell
Created March 23, 2014 20:46
Show Gist options
  • Save chrisblackwell/9729571 to your computer and use it in GitHub Desktop.
Save chrisblackwell/9729571 to your computer and use it in GitHub Desktop.
jQuery Dropdown Menu
// Menu Hover
$(".menu li").on('mouseenter', function () {
$(this).children(".sub-menu").slideDown(function() {
$(this).stop(true,true);
})
});
$(".menu li").on('mouseleave', function () {
$(this).children(".sub-menu").slideUp(function() {
$(this).stop(true,true);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment