Skip to content

Instantly share code, notes, and snippets.

@bloqhead
Created September 20, 2013 20:02
Show Gist options
  • Save bloqhead/6643027 to your computer and use it in GitHub Desktop.
Save bloqhead/6643027 to your computer and use it in GitHub Desktop.
Simple jQuery pulldown script.
$('ul#menu-main-menu li').hover( function() {
$('.sub-menu', this).show();
if( $(this).find('.sub-menu').length > 0 ) {
$(this).addClass('active');
}
}, function(){
$('.sub-menu', this).hide();
$(this).removeClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment