This is the code:
$.get('test.php',
function(data){
var black_html = "<span class='wrap-content'>"+data+"</span>";
$('body').after(black_html);
console.log( $('.wrap-content').height() );
});
In firefox, I'm getting the correct value: 468px, but in Chrome I'm getting 0.