Skip to content

Instantly share code, notes, and snippets.

@richgcook
Created June 18, 2014 13:53
Show Gist options
  • Save richgcook/7ba48ed3f4704db6aca8 to your computer and use it in GitHub Desktop.
Save richgcook/7ba48ed3f4704db6aca8 to your computer and use it in GitHub Desktop.
jQuery – hide the container when clicked outside
$(document).mouseup(function(e) {
var container = $('YOUR CONTAINER SELECTOR');
if (!container.is(e.target) && container.has(e.target).length === 0) {
container.fadeOut('fast');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment