I have to read each images' natural height and I should make calculations. However, I have some problem with read to natural height.
$('div.imgkirp img').each(function(){
console.log($(this).naturalHeight);
});
It gets: (images number) undefined in console log. How can I read each of the images' natural height?