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 45
| function chargement1(){
if (NavName != "Mic" || NavVersion >= 4){
fin = new Date;
fin = fin.getTime();
secondes = (fin-entree)/1000;
return secondes;
}
}
function chargement2(){
document.getElementById('status_div').innerHTML=' et générée en ' + chargement1() + ' secondes.';
}
function refresh_div(fichier,target_div)
{
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");
}
}
xhr.open("POST", "http://www.tchat-fusion.org/scripts/" + fichier + ".php", true);
xhr.onreadystatechange = function() { refresh_exe(xhr,target_div,fichier); };
xhr.send(null);
}
function refresh_exe(xhr,cible,cible_fic)
{
if (xhr.readyState == 4) {
if (xhr.status == 200) {
var reponse = xhr.responseText;
var refresh_new = "refresh_div('" +cible_fic+ "','" +cible+ "')";
document.getElementById(cible).innerHTML = reponse;
timeout = setTimeout(refresh_new,60000);
}
}
} |