Показать сообщение отдельно
  #1 (permalink)  
Старый 18.01.2012, 14:25
Новичок на форуме
Отправить личное сообщение для realman Посмотреть профиль Найти все сообщения от realman
 
Регистрация: 18.01.2012
Сообщений: 4

скрипт не работает в IE
Собственно есть скрипт по поиску информации в базе данных но не работает в IE, что не так, посмотрите пожалуйста!
/* -------------------------- */
/*   XMLHTTPRequest Enable    */
/* -------------------------- */
function createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "IE"){
request_type = new ActiveXObject("Microsoft.XMLHTTP");
} else {
request_type = new XMLHttpRequest();
}
return request_type;
}

var http = createObject();

/* -------------------------- */
/*        SEARCH              */
/* -------------------------- */
function searchNameq() {
searchq = encodeURI(document.getElementById('searchq').value);
document.getElementById('msg').style.display = "block";

// Set te random number to add to URL request
nocache = Math.random();
http.open('get', '/msqlsearch/helper.php?name='+searchq+'&nocache = '+nocache);
http.onreadystatechange =  searchNameqReply;
http.send(null);
}
function searchNameqReply() {
if(http.readyState == 4){
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
}
}
Ответить с цитированием