Untropee,
запуск алерта по окончании всех анимаций на данных элементах
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>animated demo</title>
<style>
div {
background: yellow;
border: 1px solid #AAA;
width: 80px;
height: 80px;
margin: 0 5px;
float: left;
opacity: 0;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button id="run">Run</button>
<div class="popup_static"></div>
<div class="sale"></div>
<script>
var d = $(".popup_static, .sale");
$("body").click(function(){
d.css({opacity:0}).animate({opacity:1},2000,function(){!d.queue( "fx" ).length && alert('test')});
})
d.animate({opacity: 1}, 2000).promise().done(function() {
alert('test');
});
</script>
</body>
</html>