Created
May 8, 2017 10:00
-
-
Save gerdneuman/a27f7c98e2cb97c84aa7e29555591a18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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