Tema: Tecla ENTER
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/07/2005, 09:20
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 8 meses
Puntos: 5
fácil:

Código HTML:
 <script> 
function bloquear_enter(e) {
  var charCode
 
  charCode = e.keyCode 
  status = charCode 
  if (charCode == 13) {
   return false
  }
  return true
 }
</script>
 
 
<textarea name="nombre" cols="70" rows="4" onKeyPress="return bloquear_enter(event)"></textarea> 
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.