|
|
get imagesize javascript - Javascript
|
Views : 332
|
|
Tagged in : Javascript
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
get image size javascript:
To get image size in javascript use the following format:
var newImg = new Image();
newImg.src = imgSrc; //specify the image source
var height = newImg.height;
var width = newImg.width;
alert(width+"*"+height); |
|
By Ramya, On - 2010-03-09 |
|
|
|