Skip to content

Instantly share code, notes, and snippets.

@abaicus
Created March 22, 2017 13:03
Show Gist options
  • Save abaicus/f0578c26003b945fe72d942e896e20e2 to your computer and use it in GitHub Desktop.
Save abaicus/f0578c26003b945fe72d942e896e20e2 to your computer and use it in GitHub Desktop.
Hide on click outside
$(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