Created
June 26, 2015 08:43
-
-
Save aypn0s/f2e416634fac93c2389a to your computer and use it in GitHub Desktop.
Close div when click outside
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(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