Skip to content

Instantly share code, notes, and snippets.

@chickenfoot88
Created July 4, 2018 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chickenfoot88/146bf2d87703c93593182d7f17d721d6 to your computer and use it in GitHub Desktop.
Save chickenfoot88/146bf2d87703c93593182d7f17d721d6 to your computer and use it in GitHub Desktop.
$(document).mouseup(function (e) {
var menu = $('.side-menu');
if (e.target !== menu[0] && !menu.has(e.target).length) {
hideSideMenu();
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment