7 lines
342 B
JavaScript
7 lines
342 B
JavaScript
document.querySelectorAll('.header_top_item').forEach((item) => {
|
||
item.addEventListener('click', (e) => {
|
||
e.preventDefault(); // если не нужно переходить со страницы
|
||
document.querySelectorAll('.header_top_item').forEach(el => el.classList.remove('active'));
|
||
item.classList.add('active');
|
||
});
|
||
}); |