url="1.jpg"
var image=new Image();
         image.src=url;
        function imageLoadTrue() {
           if(!image.complete) {
             setTimeout(image.id='image', 10);
             imageLoadTrue();
            }
         }
         
		 
		 document.body.appendChild(image)
		 alert(image.width+'='+image.height)
 
 
А ты изображения добавил в код или нет? document.body.appendChild(image)
	 |