Last active
November 23, 2020 10:49
-
-
Save YakovSPb/9c47c18d902a928a39252d1725300509 to your computer and use it in GitHub Desktop.
Закрытие окна при клике вне его или по нему JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Закрытие окна при клике вне его или по нему JS | |
================ | |
document.addEventListener('click', function(e) { | |
const mobileMenu = document.querySelector('.sub-menu') | |
if (e.target.hasClass !== 'sub-menu' && (!e.target.matches('.menu-item-has-children') && !e.target.parentElement.matches('.menu-item-has-children'))) { | |
mobileMenu.classList.remove('open-menu') | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment