Skip to content

Instantly share code, notes, and snippets.

@neurobotic
Created May 1, 2015 20:15
Show Gist options
  • Select an option

  • Save neurobotic/474efc9337cc30afaa5b to your computer and use it in GitHub Desktop.

Select an option

Save neurobotic/474efc9337cc30afaa5b to your computer and use it in GitHub Desktop.
jQuery - active nav demo for Aaron
<style>
.activenav{
color: red;
}
</style>
<script>
(function($) {
$('.menu > li > a').click(function() {
$("a.activenav").removeClass('activenav');
$(this).addClass('activenav');
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment