So I have an element:
<div class="obj">
<img width="896" height="595" src... />
<div class="details">
<h2>Title</h2>
<p>...</p>
</div>
</div>
<div class="obj">
<img width="896" height="595" src... />
<div class="details">
<h2>Title</h2>
<p>...</p>
</div>
</div>
I'm then performing this on them:
$objs = $('.obj');
$objs.each(function() {
console.log($(this).height());
}
In element inspector in Chrome, the height of .obj is 720 (same as the image). However I get 0 in the console for each element.
The images aren't floated, so the .obj is containing it's children in css. I don't really know what could be going wrong, and why jQuery isn't returning 720.
Could it be CSS related?