Sign up to create your own snipts, or login.

Public snipts » rmondragon's snipts » radio The latest radio snipts from rmondragon.

showing 1-1 of 1 snipts for radio
  • Validar radio button
    <script language="Javascript">
     function verif(){ 
        var pepez=0; 
        for(i=0; ele=document.nacimiento.elements[i]; i++){ 
            //Para validar checkbox se modifica la siguiente linea por
            //ele.type=='checkbox'
    	if (ele.type=='radio')
            if (ele.checked){
              pepez=1;break;
            }	
        } 
        if(pepez==1){
           document.nacimiento.submit();
        }else{
           alert('Debe seleccionar alguno de los Items');
           return;
        } 
      }
    </script>
    

    copy | embed

    0 comments - tagged in  posted by rmondragon on Dec 24, 2008 at 12:37 p.m. EST
Sign up to create your own snipts, or login.