Skip to content

Instantly share code, notes, and snippets.

@agragregra
Last active April 7, 2022 19:27
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save agragregra/ba549b95d8399cdb87a1 to your computer and use it in GitHub Desktop.
Save agragregra/ba549b95d8399cdb87a1 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