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\').e
Try to use property naturalHeight of image, using the prop method of the jQuery
naturalHeight
prop
jQuery
$('div.imgkirp img').each(function(){ console.log($(this).prop('naturalHeight')); });