Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Alessandro Munari on Feb 16, 2010 13:52
open dhtmlx forum
Is it possible to get the HTTP status code after an AJAX sync/async call, 200 - ok, 404 - file not found, etc ?

Answer posted by Stanislav (support) on Feb 17, 2010 01:14
You can try the next

dhtmlxAjax.get(url,function(loader){
     alert(loader.xmlDoc.status);
})