Skip to content

Instantly share code, notes, and snippets.

@Lysindr
Created September 24, 2018 12:46
Show Gist options
  • Save Lysindr/5c60d21de100ad26f5e1e09761c1737c to your computer and use it in GitHub Desktop.
Save Lysindr/5c60d21de100ad26f5e1e09761c1737c to your computer and use it in GitHub Desktop.
Close menu click outside
$body.on('click touchstart', function (event) {
if (!$(event.target).closest($menuButton.add($mobileMenu)).length) {
$mobileMenu.removeClass('is-active');
$menuButton.removeClass('menu-button--cross');
$body.removeClass('block-scroll');
} else {
return
}
});
@Farik4098
Copy link

Farik4098 commented Sep 24, 2018

Helpful tip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment