Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/07/2009, 16:58
jufena84
 
Fecha de Ingreso: mayo-2008
Ubicación: Sevilla - España
Mensajes: 140
Antigüedad: 16 años, 6 meses
Puntos: 1
Incompatibilidad de ajax con IE

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!!