( )
, , , DOM (, ). .
, , - , 2 .
var url = .....;
var container = $('#images_container');
$("<img />").hide().load(function () {
$(this).fadeIn();
}).attr('src', url).appendTo($(container ));
if ($(container).children().length > 2) {
$(":nth-child(1)", container).remove();
}
HTML:
<div id="images_container"></div>
CSS , , .
#images_container {
position: relative;
}
#images_container {
position: absolute;
}