Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 30, 2014 14:53
Show Gist options
  • Save jpcontrerasv/cce5f1a4a6be3b7c1d90 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/cce5f1a4a6be3b7c1d90 to your computer and use it in GitHub Desktop.
Toggle Class menu
$('nav a').click(function () {
$('nav a').not(this).removeClass('active');
$(this).addClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment