Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karamansky/17531ffc2d94813ab0dbd2a7d9a7792f to your computer and use it in GitHub Desktop.
Save karamansky/17531ffc2d94813ab0dbd2a7d9a7792f to your computer and use it in GitHub Desktop.
jQuery(function($){
$(document).mouseup(function (e){ // событие клика по веб-документу (or .on(touchstart click))
var div = $("#popup"); // тут указываем ID элемента
if (!div.is(e.target) // если клик был не по нашему блоку
&& div.has(e.target).length === 0) { // и не по его дочерним элементам
div.hide(); // скрываем его
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment