Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 11: | Строка 11: | ||
} | } | ||
}); | }); | ||
}); | |||
}); | |||
// Добавление события нажатия на кнопку | |||
document.querySelectorAll('.custom-button').forEach(button => { | |||
button.addEventListener('click', () => { | |||
// Ваш код для обработки нажатия кнопки | |||
alert("Button clicked!"); | |||
}); | }); | ||
}); | }); | ||
Версия от 07:15, 26 августа 2024
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.querySelectorAll('.custom-button').forEach(button => {
button.addEventListener('click', () => {
// Ваш код для обработки нажатия кнопки
alert("Button clicked!");
});
});