Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/11/2005, 12:12
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años
Puntos: 5
hola luisolan, bienvenido al foro!

aqui esta lo que solicitas... espero te sirva

Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<script language="javascript">
function Validar(f) {
if (f.opcion[0].checked == false && f.opcion[1].checked == false) {
alert("Debes seleccionar una de las dos opciones!.");
f.opcion[0].focus();
return false;
}
 
if (f.opcion[0].checked == true) {
if (f.texto.value == "") {
alert("Debes decir porque Si!.");
f.texto.focus();
return false;
}
}
 
return true;
}
</script>
<form name="form1" method="post" onSubmit="return Validar(this)">
<input type="radio" name="opcion" id="opcion" value="1"> Si
<input type="radio" name="opcion" id="opcion" value="0"> No
<input type="text" name="texto" value="" size="40">
<input type="submit" value="Enviar">
</form>
 
</body>
</html> 
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.