var J_lis = $("#Jerseybox ul li img");
var count_jersey = 0
J_lis.hide();
J_lis.each(function(g) {
$(this).delay((g + 1) * 360).fadeIn();
count_jersey++;
});
i am using $.each to make it fadeIn image one by one , using this code ,but is there anyway i could know last image fadeIn ?
my intetion is to make those image fadeIn one by one and when the last the image finished fadeIn i will remove something.
how do i check last Image finished fadeIn?