Created
May 18, 2017 17:04
-
-
Save lizardking8610/2256b0841c4f281de8b8a40a634224e6 to your computer and use it in GitHub Desktop.
jQuery: highlight links to current page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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