Mode:
Duration:
1
2
3
4
5
6
7
8
document.addEventListener('DOMContentLoaded', () => {
const items = document.querySelectorAll('.accordion-item');
items.forEach(item => {
item.querySelector('.title').addEventListener('click', () => {
item.classList.toggle('open');
});
});
});Coding works best on desktop or with an external keyboard.