list.forEach(item =>{
item.addEventListener('click', (e) =>{
list.forEach(el=>{ el.classList.remove('active_class'); });
item.classList.add('active_class')
})
radioButtons.forEach((radioButton, index) => {
radioButton.addEventListener('click', () => {
const value = radioButton.value;
progressBars.forEach((progressBar, progressBarIndex) => {
if (progressBarIndex = index) {
progressBar.style.width = value;
} else {
progressBar.style.width = '0%';
}
});
});
});
})
От такого вообще голову снесет?
Да
о как сделать синтаксис
Обсуждают сегодня