Skip to content

Instantly share code, notes, and snippets.

@vdchristelle
Created September 9, 2013 07:26
Show Gist options
  • Save vdchristelle/6492445 to your computer and use it in GitHub Desktop.
Save vdchristelle/6492445 to your computer and use it in GitHub Desktop.
accordion effect on hover
/**
* accordion effect on hover
* HTML: .sub-menu-1 ul li.expanded ul li
*/
$('.sub-menu-1 .expanded').hover(function() {
that = this;
setTimeout(function() {
$(that).find('ul').slideDown();
$(that).siblings().find('ul').slideUp();
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment