How to get the original height of an HTML element?
I have a div:
<div id="div" style="height:150px; border:solid thin blue;"></div>
Is there any way to get the div height of the original ? The div is resized, so the user can resize it before loading the code.
Note: my code is a jQuery plugin, so I don’t know what happened to the element before my plugin (so please do not tell me to store the height in the element data ...)
jqFiddle in this demo, I want to get 150 after resizing the div.
Any help would be greatly appreciated!
+3