Buenas mi problema es el siguiente yo estoy haciendo un proyecto Web y en una partecita puse ajax que con el firefox me sirve genial pero con el IE no es una cosa uy sencilla es esto
Código HTML:
<script>
function nuevoAjax(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function EnviarSubmit(Id,Respuesta){
var contenedor;
contenedor = document.getElementById('recibirAjax');
ajax=nuevoAjax();
ajax.open("POST", "Ajax/DevolverRespuestas.php",true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
contenedor.innerHTML = ajax.responseText;
}
}
ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
ajax.send("id="+Id+"&respuesta="+Respuesta);
}
</script>
No entiendo porque no me funciona podrían ayudarme!!