function MyFunc(url){
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState != 4) return;
if (xhr.status != 200) {
alert('Ошибка: ' + xhr.status + '|' + xhr.statusText);
} else {
alert('All is ok');
var NewWin=window.open('','','...');
NewWin.document.write(xhr.responseText); // xhr.responseText - переменная в которой хранится нужный текст
}
}
}
MyFunc('http://javascript.ru/forum/');
нажми у браузере f12 и введи в консоль этот код
появится алетр('All is ok')
откроется окно и будет там нужный текст)))
косяк на твоей стороне...
UPD: всем спокойной ночи, а спать