Is there a way to get the exact CSS (non-computed) value of an element using jQuery?
You can only retrieve the computed value in px
via the DOM.
That being said, you can work out the percentage by getting the elements height and comparing it to the parent's height. em
, en
and other measurements are not possible.