Показать сообщение отдельно
  #2 (permalink)  
Старый 13.12.2012, 14:14
Аспирант
Посмотреть профиль Найти все сообщения от adik7960
 
Регистрация: 11.03.2012
Сообщений: 58

var ajax_text;
function ajax_build(id, callback) {
 var http = createObject();
 http.open('GET', '/scripts/ajax_build.php?id='+id+'&nocache='+nocache); 
 http.onreadystatechange = function() {
  if(http.readyState == 4 && http.status == 200) {
    var response = http.responseText;
     if(response != '') {text=response;} 
  } 
} 
http.send(''); 
}

document.getElementById('div').innerHTML = text;
Ответить с цитированием