Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/02/2006, 15:01
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Código:
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function probar(texto){
var patron=/^([a-zA-Z]*\s?[a-zA-Z]*)?$/
if(patron.test(texto)==0){
alert('no');
}
}
</script>
</head>

<body>
<form name="form1" method="post" action="">
  <input name="textfield" type="text" size="60" onKeyUp="probar(this.value)">
</form>
</body>
</html>