Eso seria:
- Crear un timer asociado al evento onKeyup() a una funcion anonima que concatene "\n" en ese TEXTAREA
Código Javascript
:
Ver original<html>
<head>
<title>No molestar!</title>
<style>
body {background-color: #000;}
h1 {color: white;}
textarea#no_stop
{
width:350px;
height:350px;
background-color: #eee;
color: white;
border: red 5 px;
position:relative;
}
</style>
</head>
<body>
<h1> No te detengas!</h1>
<TEXTAREA id="no_stop"></TEXTAREA>
<script>
window.onload = function()
{
tx = document.getElementById('no_stop');
miHandler = function()
{
setTimeout(function(){
console.log('Pasaron 8 seg y nada! perezoso!');
tx.value += '\n'
},8000);
};
tx.addEventListener ('keyup',miHandler,false);
}
</script>
</body>
</html>