I use this lines to processing responseText from Ajax call.
response=JSON.parse(xmlhttp.responseText)
len=response.length;
console.log(len);
for(i=0;i<len; i++){
console.log(i);
alert(response[i].IPO)
//COCView.lb01Select.appendChild(new DOMtag('option'{'id':response[i].CO_HDR_ID,'innerHTML':response[i].ONR}));
}
}
After i want to use the inside function(appendChild), I can fetch only the first object of the response array! Could help me somebody, why stops the cycle?