Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Forked from agragregra/jquery-active.js
Created April 1, 2017 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihorduchenko/44ce587986615d3c0afa9363aa548331 to your computer and use it in GitHub Desktop.
Save ihorduchenko/44ce587986615d3c0afa9363aa548331 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