Ver Mensaje Individual
Antiguo 23/06/2011, 01:24   #16
SilverCrest
Usuario Activo
 
Fecha de ingreso: 10/may/2005
Mensajes: 798
SilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asiSilverCrest Va a salirse de la galaxia como siga asi
[QUOTE=kezuziyo;4245731]ya lo tengo instalado, parece que carga las páginas mas rápidas (o las carga internamente y luego la muestra de golpe)

pero sigue sin funcionar la página para leer el correo de Telefonica, Terra o Movistar, y eso que ya hace tiempo que lo saben, al menos eso leí en algún sitio.[/QUOTE]

el problema no es de FF, ni tampoco de VBScript, puesto que telefonica.net, usa javascript...echando un vistazo al codigo, he encontrado esto...

[PHP]this.isIE = navigator.appName.toLowerCase().indexOf("microsoft internet explorer") != -1;
this.isFF3 = navigator.userAgent.toLowerCase().indexOf("firefox/3") != -1;
this.isFF4 = navigator.userAgent.toLowerCase().indexOf("firefox/4") != -1;
.
.
.
.
.
this.getElementsByTagName = function(tagName, refElmnt){
if(!refElmnt)
refElmnt = this.req.responseXML;
if(this.isIE || this.isFF3 || this.isFF4)
tagName = "cp:"+tagName;
return refElmnt.getElementsByTagName(tagName);
};[/PHP]la solucion es rapida y facil...

[PHP]this.isIE = navigator.appName.toLowerCase().indexOf("microsoft internet explorer") != -1;
this.isFF3 = navigator.userAgent.toLowerCase().indexOf("firefox/3") != -1;
this.isFF4 = navigator.userAgent.toLowerCase().indexOf("firefox/4") != -1;
this.isFF5 = navigator.userAgent.toLowerCase().indexOf("firefox/5") != -1;
.
.
.
.
.
this.getElementsByTagName = function(tagName, refElmnt){
if(!refElmnt)
refElmnt = this.req.responseXML;
if(this.isIE || this.isFF3 || this.isFF4 || this.isFF5)
tagName = "cp:"+tagName;
return refElmnt.getElementsByTagName(tagName);
};[/PHP]o esto...

[CODE]
this.isIE = navigator.appName.toLowerCase().indexOf("microsoft internet explorer") != -1;
this.isFF3 = navigator.userAgent.toLowerCase().indexOf("firefox/3") != -1;
this.isFF4 = /firefox\/[4-5]/.test(navigator.userAgent.toLowerCase());
.
.
.
.
.
this.getElementsByTagName = function(tagName, refElmnt){
if(!refElmnt)
refElmnt = this.req.responseXML;
if(this.isIE || this.isFF3 || this.isFF4)
tagName = "cp:"+tagName;
return refElmnt.getElementsByTagName(tagName);
};
[/CODE]un saludo.
SilverCrest está desconectado
Respuesta rápida a este mensaje
Responder Citando Subir