Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
document.querySelectorAll('nav a').forEach((link) => { if (link.pathname === location.pathname) { link.classList.add('active'); } });
document.querySelectorAll('.nav a').forEach((link) => { if (link.pathname === location.pathname) { link.classList.add('active'); } });
document.querySelectorAll('.nav a').forEach((link) => { if (link.pathname === location.pathname) { link.style = 'color: red'; } });
document.querySelectorAll('.nav a').forEach((link) => { if (link.pathname === location.pathname) { link.parentElement.classList.add('active'); } });