Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/11/2011, 07:58
Avatar de maycolalvarez
maycolalvarez
Colaborador
 
Fecha de Ingreso: julio-2008
Ubicación: Caracas
Mensajes: 12.120
Antigüedad: 16 años, 4 meses
Puntos: 1532
Respuesta: Codigo solo anda en iexplorer

document.forms['inicio'].elements['myoption'][i].checked

aunque como pasas el form como argumento, la función quedaría:

Código Javascript:
Ver original
  1. function validar(yo){    
  2.     var sel=false;
  3.     for(var i=0;i<2;i++){
  4.     if (yo.elements['myoption'][i].checked){
  5.         sel=true;
  6.         break;
  7.     }
  8.     }
  9.     if(sel==false){
  10.         alert("You must choose an option!");
  11.         return false
  12.     }
  13.  
  14.     if (yo.elements['myoption'][0].checked) {
  15.         location.href = "predesigned.html";
  16.     }
  17.     if (yo.elements['myoption'][1].checked) {
  18.         location.href = "personalized.html";
  19.     }
  20. }

y en el onclick del input: onclick="validar(document.forms['inicio']);"
__________________
¡Por favor!: usa el highlight para mostrar código
El que busca, encuentra...