Skip to content

Instantly share code, notes, and snippets.

@codekipple
Created July 2, 2014 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codekipple/a589ae0f5d0fc4b435ea to your computer and use it in GitHub Desktop.
Save codekipple/a589ae0f5d0fc4b435ea to your computer and use it in GitHub Desktop.
click outside
$(document).on('mouseup touchend', function(e) {
$('.my-elem').each(function() {
if($(this).has(e.target).length === 0) {
// hide this element?
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment