Created
March 24, 2017 17:11
-
-
Save KeithNdhlovu/54e6d832a11ff5f4679a4d1f718ec18a to your computer and use it in GitHub Desktop.
Checks if the item you clicked on, is anything except for itself
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).click(function(e) { | |
| var target = e.target; | |
| if (!$(target).is('#menu') && !$(target).parents().is('#menu')) { | |
| $('#menu').hide(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment