Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/05/2010, 02:49
arkaizt
 
Fecha de Ingreso: mayo-2010
Mensajes: 2
Antigüedad: 14 años, 6 meses
Puntos: 0
ayuda explorer

Hola chicos, tengo un problema en el curro, tengo una pagina con unos formularios que piden la información a un aparato electrónico y la muestran, pero solo la muestran con el IE, necesito que se vea en mozilla y firefox, a ver si podeis ayudarme.

Las variables están abreviadas, espero que no os confunda mucho pero es que la pagina va en una flash de un Micro y debe ocupar lo menos posible.

Os dejo la parte del codigo de los explorer, gracias y un saludo!!

Código HTML:
<script type="text/javascript">
//META HTTP-EQUIV="REFRESH" content="5" 
// setTimeout(nombreFuncion, tiempoMilisegundos);
// clearTimeout(timerID);

var tom= "";
var parr= "";
var dev= "";
var ToSave_= "";
var Empresa_= "";
var timerID = 0;
var tiempoReset = 15000;	//milisegundos
var tiempoActualiza = 7000;	 	//milisegundos
var tiempoInterFirm = 380000;	//milisegundos->6' 20''
function CxH(c,d)
{  
tom =c;
parr = d;

try
     {XmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	//Here we will assign ready state change event where we will 
	// handle the response data from the server  
	XmlHttp.onreadystatechange=sCEH;
	}
//If you have an older version of the ie you will have
// Microsoft.XMLHTTP instead of Msxml2.XMLHTTP
catch (e)
	{XmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
	
return XmlHttp;
}