Skip to content

Instantly share code, notes, and snippets.

@sunny
Created October 30, 2008 09:54
Show Gist options
  • Save sunny/20955 to your computer and use it in GitHub Desktop.
Save sunny/20955 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var thoughts = 'Je mange des enfants la nuit. ';
window.addEventListener('load', function() {
var t = document.getElementById('t');
var text = '';
t.addEventListener('keyup', function () {
while (text.length < t.value.length)
text += thoughts;
t.value = text.slice(0, t.value.length);
} , false);
}, false);
</script>
<h1>Le lecteur de pens&eacute;es</h1>
<textarea id="t" cols="72" rows="5"></textarea>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment