I'm trying to get the absolute rendered height of an element in Google Chrome:
When I inspect the element, the height shows up as 38.4:
What's the deal, how can I get the real height value?
I'm trying to get the absolute rendered height of an element in Google Chrome:
When I inspect the element, the height shows up as 38.4:
What's the deal, how can I get the real height value?
Have you tried parsing it into float by using parseFloat(elementHeight);
?