AJAX and responsestatus

Microsoft XMLHTTP object has a property to retrieve the web server response status (200 ok, 500 internal server error…) against an ajax call. Is something similar available in your AJAX object?

10x,
Alessandro.

Yes, status can be got from loader.xmlDoc:

dhtmlxAjax.get(url,outputResponse);
function outputResponse(loader){
var status = loader.xmlDoc.status;
}