Skip to content

Instantly share code, notes, and snippets.

@Jekins
Created January 13, 2016 14:19
Show Gist options
  • Save Jekins/18c3bb615176f6ca42c5 to your computer and use it in GitHub Desktop.
Save Jekins/18c3bb615176f6ca42c5 to your computer and use it in GitHub Desktop.
Клик в лбом месте, кроме самого элемента, выполнит необходимые действия
$(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