Skip to content

Instantly share code, notes, and snippets.

@simon1400
Created December 23, 2015 01:22
Show Gist options
  • Save simon1400/bb6ffcfbda102371e56f to your computer and use it in GitHub Desktop.
Save simon1400/bb6ffcfbda102371e56f to your computer and use it in GitHub Desktop.
Toggle menu
<a href="#" class="toggle-mnu hidden-lg"><span></span></a>
$(".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