|
Метки: очистка ручная отмена |
| Строка 1: |
Строка 1: |
| document.addEventListener("DOMContentLoaded", function() {
| |
| var headers = document.querySelectorAll("h3");
| |
| headers.forEach(function(header) {
| |
| header.style.cursor = "pointer";
| |
| header.addEventListener("click", function() {
| |
| var nextElement = header.nextElementSibling;
| |
| if (nextElement.style.display === "none") {
| |
| nextElement.style.display = "block";
| |
| } else {
| |
| nextElement.style.display = "none";
| |
| }
| |
| });
| |
| });
| |
| });
| |
|
| |
|
|
| |
| document.addEventListener('DOMContentLoaded', function() {
| |
| const buttons = document.querySelectorAll('.custom-button');
| |
|
| |
| buttons.forEach(button => {
| |
| button.addEventListener('click', function() {
| |
| // Добавляем класс для активного состояния
| |
| this.classList.toggle('button-active');
| |
| });
| |
| });
| |
| });
| |