document.querySelectorAll('.dropdown').forEach(function(el){ el.addEventListener('mouseleave', function(){ this.classList.remove('show'); this.querySelector('.dropdown-menu').classList.remove('show'); }); });