Files
website-astro-stefanimhoff.de/src/components/ActiveNavigationCheck.astro
2023-06-14 13:58:46 +02:00

21 lines
395 B
Plaintext

---
---
<script>
function setActiveLink() {
const links = document.querySelectorAll('.navigation a');
const currentPath = window.location.pathname;
console.log(currentPath);
links.forEach((link) => {
if (link.getAttribute('href') === currentPath) {
link.classList.add('is-active');
} else {
link.classList.remove('is-active');
}
});
}
setActiveLink();
</script>