I have 40 images with the class .myImage with the css:
.myImage{
position:absolute;
}
in jQuery I'm doing:
$('.myImage').each(function(){
alert($(this).height());
});
I have the good height for something like the first 15 images, but then the alert is 0 until the very last image. And I'm quite sure that every image are displayed because with an other jQuery script I'm giving to each of them a position and they are all displayed.
How come after 15 images the alert is 0?