![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/11/2005, 13:18
|
| | Fecha de Ingreso: octubre-2004 Ubicación: España
Mensajes: 894
Antigüedad: 20 años, 3 meses Puntos: 3 | |
Hola de nuevo. Luisolan. A ver si con esto te sirve:
<script type="text/javascript">
function verifica(formu)
{
if (formu.r1[0].checked) formu.r2[0].checked=true
}
</script>
<form>
Café
<input type="radio" name="r1" value="1" onClick="verifica(this.form)">sí
<input type="radio" name="r1" value="0" onClick="verifica(this.form)">no
<br>
con azúcar
<input type="radio" name="r2" value="1" onClick="verifica(this.form)">sí
<input type="radio" name="r2" value="0" onClick="verifica(this.form)">no
</form>
__________________ Angel :cool: |