I'm sorry if i've asked the same question, but i've tried any solution but still got nothing for me.. As like the title, i want to close mobile menu when i click at outside of the area menu. Here is my jquery when using toggler button
$('.mobile-nav-toggler').click(function() {
    $('.mobile-nav-overlay').fadeToggle(200)
    $('.mobile-nav-toggler').toggleClass('active')
    $('body').toggleClass('mobile-nav-opened')
  });
mobile-nav-overlay is the layer menu. Anyone can help me? Thanks
 
     
     
    