03/04/2005, 22:56
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 6 meses Puntos: 21 | |
checa esto esto lo encontre aqui en el foro
function validar() {
var sel=false;
if(thisForm.rd1.length==undefined) {
if(thisForm.rd1.checked)
sel=true;
}
else
for(var i=0; i<3; i++) {
if (thisForm.rd1[i].checked) {
sel = true;
break;
}
}
if (sel == false) {
alert("debe seleccionar una opcion");
} else {
thisForm.submit();
}
}
__________________ gerardo |