пробовал через ajax не получается почему то
xhttp=new XMLHttpRequest();
xhttp.onreadystatechange=function(){
if (xhttp.readyState==4 && xhttp.status==200)
document.getElementById("result").innerHTML=xhttp.responseText;
}
xhttp.open("GET","http://home-vid.e3w.ru/book1.txt",true);
xhttp.send();