Skip to content

Instantly share code, notes, and snippets.

@kuzyk
Created October 5, 2017 13:49
Show Gist options
  • Save kuzyk/91cd2c4e4b00d0d76040b7b0fab1979b to your computer and use it in GitHub Desktop.
Save kuzyk/91cd2c4e4b00d0d76040b7b0fab1979b to your computer and use it in GitHub Desktop.
jQuery('#menu-main > li.menu-item-has-children > a').on('click', function (e) {
e.stopPropagation();
var $this = jQuery(this);
if ($this.next('ul').is(":hidden") || $this.hasClass('active')) {
e.preventDefault();
$this.toggleClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment