Skip to content

Instantly share code, notes, and snippets.

@dherbold
Created August 2, 2017 17:22
Show Gist options
  • Save dherbold/017338a52cd59d433167ecc8eb1ce587 to your computer and use it in GitHub Desktop.
Save dherbold/017338a52cd59d433167ecc8eb1ce587 to your computer and use it in GitHub Desktop.
<script>
jQuery(function(){
jQuery("a").each(function(){
if (jQuery(this).attr("href") == window.location.pathname){
jQuery(this).addClass("youarehere");
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment