function start(){
xhttp=new XMLHttpRequest();
xhttp.open('GET','http://resources.finance.ua/ru/public/currency-cash.json');
xhttp.send();
xhttp.onreadystatechange=function(){
if (xhttp.readyState==4){
alert(xhttp.responseText);
}
}
}
Почему alert выводит пустое окно, а не содержимое файла ?