Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Last active February 13, 2024 07:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/d6304fa60ff5e5088ce7 to your computer and use it in GitHub Desktop.
Save taniarascia/d6304fa60ff5e5088ce7 to your computer and use it in GitHub Desktop.
Toggle navigation with jQuery
function toggleNav() {
if ($('#wrapper').hasClass('show-nav')) {
// Do things on Nav Close
$('#wrapper').removeClass('show-nav');
} else {
// Do things on Nav Open
$('#wrapper').addClass('show-nav');
}
//$('#wrapper').toggleClass('show-nav');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment