Skip to content

Instantly share code, notes, and snippets.

@Nosfheratu
Created January 19, 2013 12:54
Show Gist options
  • Save Nosfheratu/4572534 to your computer and use it in GitHub Desktop.
Save Nosfheratu/4572534 to your computer and use it in GitHub Desktop.
Highlights active url .nav classes matching current url path
$(document).ready(function(){
if(location.pathname != "/"){
$('.nav li a[href^="/' + location.pathname.split("/")[1] + '"]').parent().addClass('active');
}
else
$('.nav li a:eq(0)').parent().addClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment