Skip to content

Instantly share code, notes, and snippets.

@luisciphere
Created April 6, 2018 09:39
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 luisciphere/4b00ac8c34035c3ac70dd18b26ce110d to your computer and use it in GitHub Desktop.
Save luisciphere/4b00ac8c34035c3ac70dd18b26ce110d to your computer and use it in GitHub Desktop.
$('.sub-menu').hide ();
$('.mainmenu li').hover (
function () {
$(this).addClass('active');
$('ul:first', this).fadeIn ();
},
function () {
$(this).removeClass('active');
$('ul:first', this).delay(100).fadeOut ();
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment