Div box sizes are measured using jQuery with the following code:
$(document).ready(function(){ var h = $("#testbox").css("height"); });
In FF, it gives me 270px, in IE auto. How can I measure the actual height / width of a div in IE without changing css?
source share