Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created December 2, 2015 20:07
Show Gist options
  • Save taniarascia/1411d5fee39b2590f8cf to your computer and use it in GitHub Desktop.
Save taniarascia/1411d5fee39b2590f8cf to your computer and use it in GitHub Desktop.
Add active class to active page
$(function () {
var pgurl = window.location.href.substr(window.location.href
.lastIndexOf("/") + 1);
$("nav ul li a").each(function () {
if ($(this).attr("href") == pgurl || $(this).attr("href") == '')
$(this).addClass("active");
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment