How can I get the width and height of a div element?
for instance,
<div style="width:100px;height:100px;overflow:hidden; float:left; margin:0px 0px 5px 0px; border:1px solid #000;">
<img src="daisy_03_20110712163828_extra.jpg" alt="daisy_03_20110712163828_extra.jpg" width="800" height="589" id="preview"/>
</div>
I tried with this method,
var previewwidth = $("#preview").css('width');
var previewheight = $("#preview").css('height');
But I get 800px which is the width of the image instead!
I want to get the 100 as number actually.