|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
document.querySelectorAll('.dropbtn').forEach(btn => {
|
|
btn.addEventListener('click', e => {
|
|
|
|
|
|
document.querySelectorAll('.dropdown-content').forEach(div => div.classList.remove('show'))
|
|
|
|
e.target.closest('.dropdown').querySelector('.dropdown-content').classList.add('show');
|
|
|
|
|
|
})
|
|
})
|
|
|
|
|
|
document.addEventListener('click', e => {
|
|
if (e.target.classList.contains('dropbtn')) return;
|
|
document.querySelectorAll('.dropdown-content').forEach(div => div.classList.remove('show'))
|
|
})
|
|
|
|
|
|
|
|
}) |