Estoy empezando con AJAX,... y siguiendo un tutorial estoy intentando hacer el típico ejemplo de escribir y que aparezca la hora,.... pero por algun motivo no me sale
Seguramente me estoy dejando algo. Alguien me sabría decir el qué
Código PHP:
<script type="text/javascript">
var httpRequest;
function cargaContenidos(url,metodo,funcion){
httpRequest = inicio_xhr();
if(httpRequest){
httpRequest.onreadystatechange = funcion;
httpRequest.open(url,metodo,true);
httpRequest.send(null);
}
}
function inicio_xhr()
{
if(window.XMLHttpRequest){
return new XMLHttpRequest();
}else if(window.ActiveXObject){
return new ActiveXObject("Microsoft.XMLHTTP");
}
}
function muestraMensaje(){
if(httpRequest.readyState==4){
if(http.Status==200){
document.myForm.time.value = httpRequest.responseText;
}
}
}
function ajaxFunction(){
cargaContenidos("time.php","GET",muestraMensaje);
}
</script>