Skip to content

Instantly share code, notes, and snippets.

@MrMooky
Created April 23, 2021 08:21
Show Gist options
  • Save MrMooky/89807c9d7d3eabf12f4a1aa2effd7abe to your computer and use it in GitHub Desktop.
Save MrMooky/89807c9d7d3eabf12f4a1aa2effd7abe to your computer and use it in GitHub Desktop.
jQuery Hide container when clicking outside
$(document).mouseup(function(e){
var container = $('.topbar .box:visible');
if (!container.is(e.target) && container.has(e.target).length === 0) {
container.slideUp(150);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment