With this code i can have the original size of the image:
var img = new Image();
img.onload = function() {
alert(this.width + 'x' + this.height);
}
img.src = 'something.jpg';
and what if i have all images loaded on DOM already, how can i get the same info!?
Thanks ;-)