Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var myImg=new Image();
myImg.src="images/myimage.jpg";
// this line waits for the image to finish loading so we
// can get the height & width properties
while (!myImg.complete) {}
var iWidth=myImg.width;
var iHeight=myImg.height;