Skip to content

Instantly share code, notes, and snippets.

@OatmealBath
Created February 17, 2015 13:41
Show Gist options
  • Save OatmealBath/5929c167091b3e00909e to your computer and use it in GitHub Desktop.
Save OatmealBath/5929c167091b3e00909e to your computer and use it in GitHub Desktop.
Active Links jQuery
// Add active class to links to current page
jQuery(document).ready(function(){
console.log(document.location);
jQuery('a[href="'+document.location.href+'"]').addClass('active');
jQuery('a[href="'+document.location.origin+document.location.pathname+'"]').addClass('active');
jQuery('a[href="'+document.location.pathname+'"]').addClass('active');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment