var req = function () {
$.ajax({
url: "out.php",
cache: false,
success: function(html){
$("#stuff").empty().append(html);
},
complete: function(){
req();
}
});
};
req();
This spinet above gets the output in the following format: 0,0
How can I parse that and have one number placed in the css selector top and the other in left?