Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Last active August 7, 2019 13:48
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 seriiserii825/6218dcb35c3c768773d20d273af1e2c3 to your computer and use it in GitHub Desktop.
Save seriiserii825/6218dcb35c3c768773d20d273af1e2c3 to your computer and use it in GitHub Desktop.
menu open
var showMainMenu = function(){
$('.main-menu li').hover(function(){
$(this).children('ul').stop(true, true).slideDown(500);
},function(){
$(this).children('ul').stop(true, true).delay(50).slideUp(500);
});
};
showMainMenu();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment