javascript を使用して画像の寸法を取得しようとしています - Mootools が読み込まれたライブラリです。
ただし、画像要素を問題なく取得し、要素のプロパティで有効な幅と高さを確認しても、プロパティにアクセスしようとすると、高さの値は常に 0 として返されます。
なんで?
window.addEvent("domready", function(){
var thisImg = $$("img.myimgclass");
console.dir(thisImg[0]); // prints all image data, including width AND height values
var height = thisImg[0].height;
var width = thisImg[0].width;
console.log(height); // prints 0 even though thisImg shows a valid height set
console.log(width); // prints valid width
});