d.skuratovich, Не работает. Все равно выдает: "Сервер не отвечает". И еще. Сервер не возвращает статус 200, так как я качаю файл, он возвращает статус 0.
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'blob';
var timeout = setTimeout(function(){
xhr.abort();
console.log("Сервер не отвечает.");
},10000);
xhr.onreadystatechange = function(){
if(xhr.readyState != 4) return;
clearTimeout(timeout);
if(xhr.status != 404){
//какой-то код
} else {
console.log(xhr.readyState);
}
}
xhr.send();