$.ajax({
url:'/account/metrics/phloader',
type: 'POST',
dataType:"json",
data:({"urlPhoto":postData,"idPhoto":idPhoto}),
success: function(response) {
//происходит вставка <img src='' />
$(".photo-stock ").append(response.photo_mini);
return true;
} ,
error: function(jqXHR, textStatus, errorThrown) {....},
});
в response.photo_mini возвращается <img src='...' />