I have the following img tag:
<img id="product-image" src="http://cf.test.com/images/store_logos/thumbnail/43f1ee4d5fe422e9440ab4afe065bbff899b24b0.jpg" width="228" height="304" style="opacity: 1;">
Trying to extract out the 304 height value:
$('#product-image').height();
However it always gives me the actual size of the image. Any ideas?