Skip to content

Instantly share code, notes, and snippets.

@isGabe
Created June 13, 2013 22:42
Show Gist options
  • Save isGabe/5778036 to your computer and use it in GitHub Desktop.
Save isGabe/5778036 to your computer and use it in GitHub Desktop.
jQuery/CSS: Basic mobile menu toggle using, with nested CSS toggle for dropdowns
$('#menu-main-menu').slideToggle(200);
});
$('#menu-main-menu > li.menu-item-parent > a').click(function(e){
$(this).parent().toggleClass('open');
$(this).preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment