I've got a problem, but it only appears at firefox. When I'm trying to get element's height it returns only the visible part of element (in firefox, in rest of the browsers it returns whole element height).
The structure is following:
<ul class="slider">
<li><div>//content</div></li>
<li><div>//content</div></li>
<li><div>//content</div></li>
...
</ul>
I'm using caroufredsel script for carousel. I need to get the height of highest element to set the height of the whole carousel, cause when i'm trying to use the option height:"auto" it still doesn't work.
So I'm asking - how to get the real height of element which is partially hidden because of overflow property?