how to click outside dom in javascript code example
Example: how to click outside dom in javascript
// jQuery
$(window).click(function() {
//Hide the menus if visible
});
// JavaScript
const getBody = document.querySelector('body');
getBody.addEventListener('click', () => {
//Hide the Menus if Visible
});
// Stop Propogation on Element you want to hide
$('#menucontainer').click(function(event){
event.stopPropagation();
});
// Example
menu.addEventListener('click', (event) => {
event.stopPropagation();
// Open Menu
});