Skip to content

Instantly share code, notes, and snippets.

@erickarbe
Created June 29, 2017 14:21
Show Gist options
  • Save erickarbe/00a9c34bc622d84313db284838d0a47c to your computer and use it in GitHub Desktop.
Save erickarbe/00a9c34bc622d84313db284838d0a47c to your computer and use it in GitHub Desktop.
Multi Toggle JS
jQuery( document ).ready( function( $ ) {
var $menu = $('#menu'),
$menulink = $('.menu-link'),
$menuTrigger = $('.has-submenu > a');
$menulink.click(function(e) {
e.preventDefault();
$menulink.toggleClass('active');
$menu.toggleClass('active');
});
$menuTrigger.click(function(e) {
e.preventDefault();
var $this = $(this);
$this.toggleClass('active').next('ul').toggleClass('active');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment