Quote Originariamente inviata da cavicchiandrea Visualizza il messaggio
Questo esempio mi sembra fatto/spiegato bene ed è commentato.
<script>
//Creazione oggetto XMLHttpRequest
function CreateXmlHttpReq(handler){
var xmlhttp = null;
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = handler;
return xmlhttp;
}

function myHandler(){
if(myRequest.readyState == 4 && myRequest.status == 200){
alert (myRequest.responseText);
}
}

function errora(){
myRequest = CreateXmlHttpReq(myHandler);
myRequest.open ('POST', 'errore.php');
myRequest.send (null);
}

</script>
Mi diresti che errore c'è nel mio script?