Skip to content

Instantly share code, notes, and snippets.

@yagamicoder
Created September 23, 2016 02:58
Show Gist options
  • Save yagamicoder/3be3b7d20a5accc33c63d26859b6194a to your computer and use it in GitHub Desktop.
Save yagamicoder/3be3b7d20a5accc33c63d26859b6194a to your computer and use it in GitHub Desktop.
Main js - alt
$('#navigation ul li a').each(function(event){
var mylink = $(this).attr("href");
var url = window.location;
//If there is a match, apply a class of current, otherwise, remove the class of current
if(url == mylink){
$(this).addClass('current');
}else{
$(this).removeClass('current');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment