Skip to content

Instantly share code, notes, and snippets.

@MikSDigital
Created August 10, 2016 12:31
Show Gist options
  • Save MikSDigital/e2e8bfde513cfd49b10cd7ff7511b0a3 to your computer and use it in GitHub Desktop.
Save MikSDigital/e2e8bfde513cfd49b10cd7ff7511b0a3 to your computer and use it in GitHub Desktop.
$(document).mouseup(function (e)
{
var container = $("YOUR CONTAINER SELECTOR");
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment