Q:

Click Outside Close Menu Box

window.addEventListener('mouseup', function(event){
	var box = document.getElementById('box1');
	if (event.target != box && event.target.parentNode != box){
        box.style.display = 'none';
    }
});
0

New to Communities?

Join the community