Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omurphy27/136c16e8f744b1dd6f8e to your computer and use it in GitHub Desktop.
Save omurphy27/136c16e8f744b1dd6f8e to your computer and use it in GitHub Desktop.
Quick active class toggle for bootstrap hamburger menu using Jquery.js
$('.navbar-toggle').click(function() {
$(this).toggleClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment