Сообщение от Nexus
|
const hash=location.hash.replace('#','');
if(!hash.length)
return;
const node=document.getElementById(hash);
if(node)
node.classList.add('active');
|
Круто! спасибо! а как убрать class active с первого элемента ? а то сразу два активных...