I have a <div>
, which is dynamically controlled by the JS, for example, some children are added dynamically. Is it possible to know the width & height of the rendered DIV after the insertion/deletion are done?
views:
27answers:
1
+3
A:
yes,
after your operations to the div you can use
$('#divid').height()
and
$('#divid').width()
John Boker
2010-10-29 04:05:57