Ver Mensaje Individual
  #4 (permalink)  
Antiguo 17/05/2010, 06:50
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 10 meses
Puntos: 126
Respuesta: ayuda explorer

Hola

Entonces prueba así

Código Javascript:
Ver original
  1. var xmlhttp = ["Msxml2.XMLHTTP","Msxml2.XMLHTTP.4.0","Msxml2.XMLHTTP.5.0","Msxml2.XMLHTTP.3.0","Microsoft.XMLHTTP"];
  2. var ajax = false;
  3. for(var i=0 ; !ajax && i<xmlhttp.length ; i++){
  4. try{
  5. ajax = new ActiveXObject(xmlhttp[i]);
  6. }
  7. catch(e) {
  8. ajax = false;
  9. }
  10. }
  11. if(!ajax && typeof XMLHttpRequest!='undefined') {
  12. ajax = new XMLHttpRequest();
  13. }
  14. return ajax;

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />