Created
January 13, 2016 14:19
-
-
Save Jekins/18c3bb615176f6ca42c5 to your computer and use it in GitHub Desktop.
Клик в лбом месте, кроме самого элемента, выполнит необходимые действия
This file contains 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 item = '.item'; | |
if ($(e.target).closest(item).length) return; | |
$(item).hide(); | |
e.stopPropagation(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment