Aller au contenu
document.addEventListener("DOMContentLoaded", function () {
const hash = window.location.hash;
if (hash) {
const target = document.querySelector(hash);
if (target) {
setTimeout(() => {
target.scrollIntoView({
behavior: "smooth",
block: "start",
});
}, 500); // petit délai pour laisser la page charger
}
}
});