Start Your Website Project. Start Generating Leads
(function () {
const containers = document.querySelectorAll(".rmm-faq__items");
if (!containers.length) return;
containers.forEach((container) => {
const items = Array.from(container.querySelectorAll("details.rmm-faq__item"));
items.forEach((d) => {
d.addEventListener("toggle", () => {
if (!d.open) return;
items.forEach((other) => {
if (other !== d) other.open = false;
});
});
});
});
})();