1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
   |  
function refreshWhole(siteId){
	var query = 'siteid=' + siteId + '&type=whole' ;
 
	document.getElementById("resultrefresh" + siteId).style.display = "block";
	refresh (query, siteId);
	return false;
}
function refresh(query, siteId){
	var xhr=null;
 
 
	if(window.XMLHttpRequest){
		xhr=new XMLHttpRequest()
	}else{
		if(window.ActiveXObject){
			try{xhr=new ActiveXObject("Msxml2.XMLHTTP")}
			catch(e){xhr=new ActiveXObject("Microsoft.XMLHTTP")}}
		else{
			alert("Your explorer doesnt support XMLHTTPRequest...");xhr=false
		}
	}
 
	xhr.open("POST",'serp.php',true);
	xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xhr.setRequestHeader("Pragma","no-cache");
	xhr.setRequestHeader("Cache-Control","no-cache");
	xhr.setRequestHeader("Expires","-1");
	xhr.onreadystatechange=function(){
		if(xhr.readyState==4&&xhr.status==200){
			updatepageRefresh(xhr.responseText, siteId)
		}
	};
	xhr.send(query);
 
}
function updatepageRefresh(str, siteId){
	document.getElementById('resultrefresh' + siteId).innerHTML=str;
} | 
Partager