Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/05/2006, 09:09
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola jeanclon

Prueba esto:
Código:
<html>
<head>
<script type="text/javascript">
function ini() {
  document.forms[0].rad[0].checked = false;
  document.forms[0].rad[1].checked = false;
}
</script>
</head>
<body onload="ini()">
<form>
<input type="radio" name="rad" />
<input type="radio" name="rad" />
</form>
</body>
</html>
Saludos,