Files
Carbon/www/script.js
2025-02-08 22:59:48 +01:00

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";
});
});
});