Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorGavrilenko/911275f936cdaef4e4b84bfa3d17f6c3 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/911275f936cdaef4e4b84bfa3d17f6c3 to your computer and use it in GitHub Desktop.
закрыть блок по клику вне его
$(document).mouseup(function (e){ // событие клика по веб-документу
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