SAE15_2022/assets/js/faq.js
2023-01-05 16:14:34 +01:00

16 lines
448 B
JavaScript

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');
}
});
});