for(..........count++){
$("#result").append('<span id="'+count+'"></span>');
$.post(
"/method",
{
owner_id: count
},
function(data){
// сюда надо вставить count значение которого было при вызове ajax
$("#"+count).text(JSON.stringify(data));
}
);