how to check image width and height in javascript code example
Example 1: javascript get image width and height
var img = new Image();
img.onload = function() {
alert(this.width + 'x' + this.height);
}
img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
Example 2: javascript get width of image
image.width