06/12/2005, 13:56
|
| | | Fecha de Ingreso: mayo-2003 Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 7 meses Puntos: 5 | |
chequea esto: Código HTML: <script language="javascript">
function validar(f) {
if (f.d[0].checked == false && f.d[1].checked == false) {
alert("debes seleccionar un radio.");
f.d[0].focus();
return false
}
if (f.hugom.value == "") {
alert("debes seleccionar un nombre de la lista.");
f.hugom.focus();
return false
}
}
</script>
<form name="form1" method="post" onsubmit="return validar(this);">
<input type="radio" name="d" value="v" />
<br />
<input type="radio" name="d" value="b" />
<br /><br />
<select name="hugom" size="1" id="hugom" >
<option value="">Seleccione</option>
<option value="hugo">hugo</option>
<option value="cesar">cesr</option>
<option value="mend">mend</option>
</select>
<br><br>
<input type="submit" value="Validar!!" name="subbutton">
</form> saludos
__________________ Saruman One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them. |