Bien, novedades:
si que pone errores, lo estaba mirando mal:
- uncaught exception "node not found".
- Request Not Defined. En los 3 sitios donde hago llamada a mi función
crear_instancia_xmlhttprequest()
que hace el clásico:
Código Javascript
:
Ver originalfunction crear_instancia_xmlhttprequest (){
var objetoAjax = false;
try {
// navegadores que no son explorer.
objetoAjax = new ActiveXObject("Msxml2.XMLHTTP");
return objetoAjax;
}
catch (e){
try {
// para explorer
objetoAjax = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
objetoAjax = false;
}
if (!objetoAjax && typeof XMLHttpRequest != 'undefined')
objetoAjax = new XMLHttpRequest();
return objetoAjax;
}
}
Alguna idea?