Skip to content

Instantly share code, notes, and snippets.

@mygoare
Created June 20, 2014 03:55
Show Gist options
  • Save mygoare/be4b8d808a183b891d75 to your computer and use it in GitHub Desktop.
Save mygoare/be4b8d808a183b891d75 to your computer and use it in GitHub Desktop.
click outside of div
$(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