Hope someone advise,
How can I close the sidebar when clicking outside I already know the way of closing it while clicking a certain button
//MOBILE MENU OPEN
$(".ed-micon").on('click', function() {
$(".ed-mm-inn").addClass("ed-mm-act");
});
//MOBILE MENU CLOSE
$(".ed-mi-close").on('click', function() {
$(".ed-mm-inn").removeClass("ed-mm-act");
});
I tried to make it as below but the browser considered the open sidebar button enter image description here a part from the body
$("body").on('click', function() {
$(".ed-mm-inn").removeClass("ed-mm-act");
});
I expect someone help. Thanks in advance.