personal-site/public/scripts/main.js

7 lines
232 B
JavaScript
Raw Normal View History

2022-01-06 05:27:13 +00:00
document.querySelectorAll("nav a").forEach((link) => {
let locationRegex = new RegExp(`${window.location.pathname}.*?`);
if (link.pathname === window.location.pathname) {
link.classList.add("active-page");
}
});