personal-site/public/scripts/main.js
2022-01-06 06:27:13 +01:00

7 lines
232 B
JavaScript

document.querySelectorAll("nav a").forEach((link) => {
let locationRegex = new RegExp(`${window.location.pathname}.*?`);
if (link.pathname === window.location.pathname) {
link.classList.add("active-page");
}
});