occurs when server side response is invalid and can't be processed
xhr | object | XmlHttpRequest object |
some.attachEvent("onLoadError", function(xhr){
//... some code here ...
});
It will not fire for valid responses, which informs about data saving problem, but only for non-parsable responses.
Back to top