JavaScriptネイティブな実装 Image() クラスに、イベントハンドラ onload() が用意されているので、これを利用する。 <script type="text/javascript"> function cont_loadImage( imageSrc ){ var img = new Image(); img.onload = function(){ alert( 'Image is NOW loaded!'+"\n" +'Original width: '+this.width+'px'+"\n" +'Original height: '+this.height+'px'+"\n" ); var targetBox = document.getElementById('cont_image'); targetBox.innerHTML = ''; targetBox.