Hi, I need to find the height of a div "after" the ajax response has been dumped into it.
$('#target').html(msg); var current_height = $('#target').height(); This doesn't work. I would like to use. $('#target').html(msg,function(){ var current_height = $('#target').height(); }); But this doesn't work either. Any help would be greatly appreciated. Cheers.