Intenta con este codigo....
Código Javascript
:
Ver originalfunction responseResult(id){
var html;
$.ajax({
url: '{{url('user_wall_children')}}',
type: "POST",
data: {id : id },
dataType: "JSON",
beforeSend: function( xhr ) {
$('#call-comment-ajax').html('cargando...');
},
async: false,
success: function( data ) {
if(parseInt(data)!=0){
for(var i = 0; i < data.length; i++) {
html += data[i].message;
}
}
}
});
return html;
}