Ajout de la FAQ

This commit is contained in:
2023-01-05 16:14:34 +01:00
parent aee3325163
commit cbfafa3e74
3 changed files with 100 additions and 1 deletions

15
assets/js/faq.js Normal file
View File

@@ -0,0 +1,15 @@
let faqLink = document.querySelectorAll('.question');
faqLink.forEach(function(link) {
link.addEventListener('click', function() {
let faqCont = this.nextElementSibling;
if (faqCont.style.display === 'block') {
faqCont.style.display = 'none';
this.classList.remove('active');
} else {
faqCont.style.display = 'block';
this.classList.add('active');
}
});
});