const buttons = document.querySelectorAll(".cs-myButton"); buttons.forEach((button) => { button.addEventListener("click", () => { buttons.forEach((b) => b.classList.remove("clicked")); button.classList.add("clicked"); }); }); }); -->