You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function XHR(){var a=new XMLHttpRequest();if(a.overrideMimeType){a.overrideMimeType("text/xml")}return a}function requeteAjax(c,b,e,a){var d=XHR();if(d===null){alert("Ajax indisponible sur ce navigateur")}else{d.open("GET",c,true);document.getElementById(b).innerHTML="Valeurs de statuts: ";d.onreadystatechange=function(){document.getElementById(b).innerHTML+=d.readyState;if(d.readyState!==4){document.getElementById(e).innerHTML="En chargement"}else{document.getElementById(e).innerHTML="Chargé!";document.getElementById(a).innerHTML=d.responseText}};d.send(null)}};