Skip to content

Instantly share code, notes, and snippets.

@kirnovak
Created May 31, 2014 10:49
Show Gist options
  • Save kirnovak/261fe9cc1e87ab373212 to your computer and use it in GitHub Desktop.
Save kirnovak/261fe9cc1e87ab373212 to your computer and use it in GitHub Desktop.
$(document).mouseup(function (e) {
var container = $("YOUR CONTAINER SELECTOR");
if (container.has(e.target).length === 0)
{
container.hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment