Skip to content

Instantly share code, notes, and snippets.

@yagamicoder
Last active September 23, 2016 02:56
Show Gist options
  • Save yagamicoder/ff3c599701f0cee4032530d59a7a027b to your computer and use it in GitHub Desktop.
Save yagamicoder/ff3c599701f0cee4032530d59a7a027b to your computer and use it in GitHub Desktop.
Highlight the current nav link using jQuery
$.each($('#navigation ul li a'), 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