Si te sirve te dejo tu ejemplo con un ajax mas limpio..
**************************************
Código Javascript
:
Ver originalvar peticion = false;
var testPasado = false;
try {
peticion = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
peticion = new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {
peticion = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
peticion = false;
}
}
}
if (!peticion)
alert("ERROR AL INICIALIZAR!");
function FAjax(url,capa,valores) {
var element = document.getElementById(capa);
fragment_url = url+"?"+valores;
element.innerHTML = 'Cargando...';
peticion.open("GET", fragment_url);
peticion.onreadystatechange = function() {
if (peticion.readyState == 4) {
element.innerHTML = peticion.responseText;
}
}
peticion.send(null);
}
Este setia otro ejemplo de cargar tu div....
NOTA: Ve que los datos los envio por GET ojo...
Saludos y suerte...