Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gerdneuman/a27f7c98e2cb97c84aa7e29555591a18 to your computer and use it in GitHub Desktop.
Save gerdneuman/a27f7c98e2cb97c84aa7e29555591a18 to your computer and use it in GitHub Desktop.
// Make empty individual links in Mobile Menu collapse/expand
// Empty a links do not toggle the collapse/expand, so trigger it manually
$('.kad-mobile-nav')
.find('.sf-dropdown')
.find('a:not([href]), a[href="#"]')
.click(function (event) {
event.preventDefault();
var $a = $(this);
var $toggle = $a.nextAll('.collapse-next');
$toggle.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment