19/05/2006, 15:50
|
| | | Fecha de Ingreso: enero-2006 Ubicación: Monterrey,Mexico
Mensajes: 952
Antigüedad: 18 años, 10 meses Puntos: 3 | |
Yo tenia ese mismo problema, hasta que use esta funcion:
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;
} |