function createXmlHttpRequestObject() {
var xmlHttp;
if(window.ActiveXObject){
try{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch (e){
xmlHttp = false;
}
}else{
try {
xmlHttp = new XMLHttpRequest();
}catch (e){
xmlHttp = false;
}
}
if (!xmlHttp){
alert("error.");
}else{
return xmlHttp;
}
}
function process(){
if (xmlHttp.readyState == 4 || xmlHttp.readyState == 0){
xmlHttp.open("GET", "konekt.php?pid=1", true);
xmlHttp.send(null);
xmlHttp.onreadystatechange = readData;
}
}
function readData() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
xmlResponse = xmlHttp.responseXML;
xmlRoot = xmlResponse.documentElement;
var one = xmlRoot.getElementsByTagName("one")[0].firstChild.data;
document.getElementById("one").innerHTML = one;
}
}
setInterval('process()', 100);
Это основа моего скрипта!!! ЧТО ЗДЕСЬ ЧЕРЕЗ ЖОПУ?!!