Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/05/2014, 08:03
Avatar de Italico76
Italico76
 
Fecha de Ingreso: abril-2007
Mensajes: 3.303
Antigüedad: 17 años, 7 meses
Puntos: 292
Respuesta: Pulsar intro automáticamente tras 8 segundos

Eso seria:

- Crear un timer asociado al evento onKeyup() a una funcion anonima que concatene "\n" en ese TEXTAREA

Código Javascript:
Ver original
  1. <html>
  2. <head>
  3. <title>No molestar!</title>
  4. <style>
  5.     body {background-color: #000;} 
  6.    
  7.     h1 {color: white;}
  8.  
  9.    textarea#no_stop
  10.    {
  11.         width:350px;
  12.         height:350px;
  13.         background-color: #eee;    
  14.         color: white;      
  15.         border: red 5   px;
  16.         position:relative;
  17.    }
  18. </style>
  19. </head>
  20. <body>
  21. <h1> No te detengas!</h1>
  22.  
  23. <TEXTAREA id="no_stop"></TEXTAREA>
  24.  
  25. <script>
  26.        
  27.     window.onload = function()
  28.     {  
  29.         tx = document.getElementById('no_stop');   
  30.  
  31.         miHandler = function()
  32.         {
  33.             setTimeout(function(){
  34.                 console.log('Pasaron 8 seg y nada! perezoso!');
  35.                 tx.value += '\n'
  36.             },8000);   
  37.         }; 
  38.            
  39.                
  40.         tx.addEventListener ('keyup',miHandler,false);         
  41.        
  42.     }
  43.        
  44. </script>
  45. </body>
  46. </html>
__________________
Salu2!

Última edición por Italico76; 31/05/2014 a las 08:19