Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/05/2010, 01:39
Avatar de bet7o
bet7o
 
Fecha de Ingreso: febrero-2010
Ubicación: DF
Mensajes: 315
Antigüedad: 14 años, 10 meses
Puntos: 20
Respuesta: que anda mal con este pequeñito codigo ?

Prueba con esto

Código HTML:
Ver original
  1.   <head>
  2.     <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  3.     <meta name="author" content="www.intercambiosvirtuales.org" />
  4.     <title>Untitled 2</title>
  5.   </head>
  6.   <body>
  7.     <script>
  8.       function hola1(word1)
  9.       {
  10.         return word1 == 0 || word1 > 10 ? false : true;
  11.       }
  12.       function hola2(word2)
  13.       {
  14.         return word2 == 0 || word2 > 10 ? false : true;
  15.       }
  16.       function validatodo(f)
  17.       {
  18.         return (hola1(f.texto1.value.length) && hola2(f.texto2.value.length));
  19.       }
  20.     </script>
  21.     <form action="archivito.php" onsubmit="return validatodo(this)" method="post" name="tutanquieto">
  22.       <input type="text" name="texto1" onblur="return hola1(value);" />
  23.       <input type="text" name="texto2" onblur="return hola2(value);" />
  24.       <input type="submit" name="cocoliso" value="salchichon"/>
  25.     </form>
  26.   </body>
  27. </html>