08/01/2008, 02:49
|
| | Fecha de Ingreso: enero-2008
Mensajes: 1
Antigüedad: 16 años, 10 meses Puntos: 0 | |
Re: problema con calendario en ajax y IE Ya lo he solucionado, era una tontería:
function CrearCalendario(QueMes){
if (window.XMLHttpRequest){
getCalendario=new XMLHttpRequest()
}else if (window.ActiveXObject){
getCalendario=new ActiveXObject("Microsoft.XMLHTTP")
}
if (getCalendario){
var url="../calendario/calendario.xml";
getCalendario.onreadystatechange=CambioDeEstado;
getCalendario.open("GET",url,true);
//intercambiar estas dos líneas para que funciones también en explorer CualMes=QueMes; getCalendario.send(null);
}else{
alert ("Tu explorador no soporta XMLHttpRequest");
}
} |