How do you get the rendered height of an element?
Let\'s say you have a element with some content inside. This content inside is going to st
element with some content inside. This content inside is going to st
Have you set the height in the css specifically? If you haven't you need to use offsetHeight; rather than height
offsetHeight;
height
var h = document.getElementById('someDiv').style.offsetHeight;