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 40 41 42 43 44
| <script>
function Ajax4(){
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
}
catch (e){
try{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e){
alert("No AJAX!?");
return false;
}
}
}
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
if (xmlhttp.responseText == "ok") {
document.getElementById("msg").innerHTML = xmlhttp.responseText;
window.location.replace("mesannonces.html");
}
else
{
window.location.replace("index.php");
} setTimeout('Ajax4()',5000);
}
}
xmlHttp.open("GET","veriforder.php",true);
xmlHttp.send(null);
}
window.onload=function(){
setTimeout('Ajax4()',5000);
}
Ajax4();
</script> |