Skip to content

Instantly share code, notes, and snippets.

@aypn0s
Created June 26, 2015 08:43
Show Gist options
  • Select an option

  • Save aypn0s/f2e416634fac93c2389a to your computer and use it in GitHub Desktop.

Select an option

Save aypn0s/f2e416634fac93c2389a to your computer and use it in GitHub Desktop.
Close div when click outside
$(document).mouseup (e) ->
if !$('#theID').is(e.target) && $('#theID').has(e.target).length == 0
$('#theID').hide()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment