Ver Mensaje Individual
  #31 (permalink)  
Antiguo 13/04/2009, 12:59
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 6 meses
Puntos: 2
Respuesta: Validacion de caja de texto...envio no vacios

Hola,
esto modifique pero no me valida...(ojo primero sin la funcion tabular).
Código php:
Ver original
  1. <input type="text" size="55" maxlength="50" name="destinatario" onKeypress="return validaLet(this)">
aki la funcion:
Código php:
Ver original
  1. function validaLet(e){
  2. //    tecla = (document.all) ? e.keyCode : e.which;
  3. //    if (tecla==8) return true; //Tecla de retroceso (para poder borrar)
  4.     patron = /^[a-z&#241;\s]+$/i;
  5. //    patron = /\d/; // Solo números
  6. //    te = String.fromCharCode(tecla);
  7.     return patron.test(e);
  8. }
Saludos,