Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
document. | document.addEventListener('DOMContentLoaded', function () { | ||
var button = document.getElementById('dropdownButton'); | |||
var menu = document.getElementById('dropdownMenu'); | var menu = document.getElementById('dropdownMenu'); | ||
menu.style.display = | button.onclick = function () { | ||
menu.style.display = (menu.style.display === 'block') ? 'none' : 'block'; | |||
}; | |||
} | }); | ||
}; | |||
Версия от 19:26, 5 мая 2025
document.addEventListener('DOMContentLoaded', function () {
var button = document.getElementById('dropdownButton');
var menu = document.getElementById('dropdownMenu');
button.onclick = function () {
menu.style.display = (menu.style.display === 'block') ? 'none' : 'block';
};
});