Hi,
I have used jquery library to find out height of div.
Below is my div element with attributes :
<DIV id="myDiv" style="height:auto; width:78;overflow:hidden"> Simple Test</DIV>
Below is my jquery code to get height of <div>
var result = $("#myDiv").css('height');
alert(result);
After executing above statement I am getting result as "auto". Actually this is I am not expecting, instead of that i want the result in px dimension.
Your suggestions are welcome!!!
Thanks,
-Pravin