Skip to content

Instantly share code, notes, and snippets.

@lizardking8610
Created May 18, 2017 17:04
Show Gist options
  • Save lizardking8610/2256b0841c4f281de8b8a40a634224e6 to your computer and use it in GitHub Desktop.
Save lizardking8610/2256b0841c4f281de8b8a40a634224e6 to your computer and use it in GitHub Desktop.
jQuery: highlight links to current page
$(function(){
$("a").each(function(){
if ($(this).attr("href") == window.location.pathname){
$(this).addClass("selected");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment