Created
December 23, 2015 01:22
-
-
Save simon1400/bb6ffcfbda102371e56f to your computer and use it in GitHub Desktop.
Toggle menu
This file contains 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
<a href="#" class="toggle-mnu hidden-lg"><span></span></a> |
This file contains 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
$(".toggle-mnu").click(function() { | |
$(this).toggleClass("on"); | |
$(".mnu").slideToggle(); | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment