Teams Room

Planifiez un rendez-vous
document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll(".rank-math-question").forEach(function (q) { q.addEventListener("click", function () { const answer = q.nextElementSibling; const isOpen = q.classList.contains("active"); document.querySelectorAll(".rank-math-question").forEach(el => el.classList.remove("active")); document.querySelectorAll(".rank-math-answer").forEach(el => el.style.display = "none"); if (!isOpen) { q.classList.add("active"); answer.style.display = "block"; } }); }); });