Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 0632347878/197347965fc730641f5794ee00852439 to your computer and use it in GitHub Desktop.
Save 0632347878/197347965fc730641f5794ee00852439 to your computer and use it in GitHub Desktop.
Cava ground
// Закрытие по нажатию
$('.close').click(function(event) {
$('.popup').fadeOut('fast', function() {
});;
});
// Закрытие при клике вне области
$(document).mouseup(function (e){ // событие клика по веб-документу
var div = $(".popup-content"); // тут указываем ID элемента
if (!div.is(e.target) // если клик был не по нашему блоку
&& div.has(e.target).length === 0) { // и не по его дочерним элементам
$('.popup').fadeOut('fast', function() {
});; // скрываем его
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment