Skip to content

Instantly share code, notes, and snippets.

@mglaman
Created January 25, 2014 04:36
Show Gist options
  • Save mglaman/8611938 to your computer and use it in GitHub Desktop.
Save mglaman/8611938 to your computer and use it in GitHub Desktop.
$('.responsive-menu li.menu-parent').hover(
function() {
$(this).find('.sub-menu').addClass('active');
},
function() {
$(this).find('.sub-menu').removeClass('active');
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment