11 lines
377 B
JavaScript
11 lines
377 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
const buttons = document.querySelectorAll(".toggle-btn");
|
|
|
|
buttons.forEach(button => {
|
|
button.addEventListener("click", function () {
|
|
const content = this.nextElementSibling;
|
|
content.style.display = content.style.display === "block" ? "none" : "block";
|
|
});
|
|
});
|
|
});
|