Cita:
Iniciado por Alexis88 Si nos mostraras lo que has intentado, te podríamos ayudar.
Me he quedado por aquí:
Código PHP:
<script>
var peticionHTTP;
function inicializar_XHR()
{
if(window.XMLHttpRequest)
peticionHTTP = new XMLHttpRequest();
else peticionHTTP = new ActiveXObject("Microsoft.XMLHTTP");
}
function realizarPeticion (url, metodo, funcion) {
//Recibir una funcion de como actuar
peticionHTTP.onReadyStateChange = funcion;
// Realizar la peticion
peticionHTTP.open(metodo, url, true);
peticionHTTP.send(null);
}
</script>
Ahora es cuando deberia ejecutar la funcion pero no se como...