Skip to content

Instantly share code, notes, and snippets.

@trof808
Created November 28, 2016 11:54
Show Gist options
  • Save trof808/cc0717514e335fa970980a9b36d921c2 to your computer and use it in GitHub Desktop.
Save trof808/cc0717514e335fa970980a9b36d921c2 to your computer and use it in GitHub Desktop.
responsive mnu slide toggle
$(".toggle-mnu").click(function() {
$(this).toggleClass("on");
$(".main-mnu").slideToggle();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment