Ver Mensaje Individual
  #69 (permalink)  
Antiguo 05/11/2008, 09:28
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 10 meses
Puntos: 2
Respuesta: Ayuda con mensaje

Muchisimas gracias David el Grande...

dejo el codigo por si alguien lo necesite:
function checked(radio) {
for (i=0; i<radio.length; i++) {
if (radio[i].checked) {
return true;
}
}
alert("falta seleccionar un boton");
return false;
}
<form name="" method="post" action="accion.php" onsubmit="return checked(this.un_nombre);">