Aller au contenu
document.addEventListener("DOMContentLoaded", function() {
const accordeon = document.querySelectorAll("#accordeon-cours .elementor-tab-title");
accordeon.forEach(tab => {
tab.addEventListener("click", function() {
setTimeout(() => {
tab.scrollIntoView({
behavior: "smooth",
block: "start"
});
}, 200);
});
});
});