Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
document.addEventListener(' | document.querySelector('.DropdownButton').addEventListener('click', function() { | ||
const list = document.querySelector('.DropdownList'); | |||
list.style.display = list.style.display === 'block' ? 'none' : 'block'; | |||
}); | }); | ||
Версия от 08:47, 8 мая 2025
document.querySelector('.DropdownButton').addEventListener('click', function() {
const list = document.querySelector('.DropdownList');
list.style.display = list.style.display === 'block' ? 'none' : 'block';
});