Created
July 15, 2017 20:39
-
-
Save 0632347878/197347965fc730641f5794ee00852439 to your computer and use it in GitHub Desktop.
Cava ground
This file contains hidden or 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
// Закрытие по нажатию | |
$('.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