Skip to content

Instantly share code, notes, and snippets.

@leabs
Created March 8, 2023 16:56
Show Gist options
  • Save leabs/11e9f20a5580982428824148f62eb2a0 to your computer and use it in GitHub Desktop.
Save leabs/11e9f20a5580982428824148f62eb2a0 to your computer and use it in GitHub Desktop.
Astro - Set active class on Navbar component.
<!--Set active class on nav when the page is active -->
<script>
const nav = document.querySelector(".navbar");
const navLinks = nav.querySelectorAll("a");
const currentURL = window.location.href;
navLinks.forEach((link) => {
if (link.href === currentURL) {
link.classList.add("active");
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment