Skip to content

Instantly share code, notes, and snippets.

@Hatteron
Forked from agragregra/jquery-active.js
Created July 8, 2017 16:03
Show Gist options
  • Save Hatteron/130703c9e195567b45e88804e41a36c3 to your computer and use it in GitHub Desktop.
Save Hatteron/130703c9e195567b45e88804e41a36c3 to your computer and use it in GitHub Desktop.
jQuery Active Menu
//Active menu
$("li a").each(function() {
if (this.href == window.location.href) {
$(this).addClass("active");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment