Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Created June 24, 2015 20:16
Show Gist options
  • Save nickberens360/88865eba69e59a8262b0 to your computer and use it in GitHub Desktop.
Save nickberens360/88865eba69e59a8262b0 to your computer and use it in GitHub Desktop.
jQuery: Check if click outside of element
$(document).mouseup(function (e)
{
var container = $('#js-searchPane');
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.removeClass('searchPane-open');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment