, GET (a) . , MSIE8 , " ".
, GET , /freads/ . , , (, ?foo=bar.)
, jQuery HTTP- corrent, - :
var XMLHttpArray = [
function() {return new XMLHttpRequest();},
function() {return new ActiveXObject("Msxml2.XMLHTTP");},
function() {return new ActiveXObject("Msxml2.XMLHTTP");},
function() {return new ActiveXObject("Microsoft.XMLHTTP");}
];
function XMLHTTPObject(){
var xmlhttp = false;
for(var i=0; i<XMLHttpArray.length; i++){
try{
xmlhttp = XMLHttpArray[i]();
}catch(e){
continue;
}
break;
}
return xmlhttp;
};
var http = XMLHTTPObject();
http.open(...);