Karim Aberkaoui
unread,Mar 15, 2025, 4:57:37 AMMar 15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AutoControl Community Forum
// Fonction pour naviguer vers la section spécifique
function scrollToSection() {
// Chercher l'élément contenant le texte "4.1. Indications thérapeutiques"
const section = Array.from(document.querySelectorAll('h2, h3, h4')) // Vous pouvez ajuster les balises selon la structure HTML du site
.find(element => element.textContent.trim() === '4.1. Indications thérapeutiques');
// Si la section est trouvée, faire défiler jusqu'à elle
if (section) {
section.scrollIntoView({ behavior: 'smooth', block: 'start' });
} else {
console.log('Section non trouvée');
}
}
// Appeler la fonction pour se rendre à la section
scrollToSection();