Add inmidatley user login to <input>
In this example, I have a simple html markup:
<input id="INPUT"/>
What I would like to achieve now is that the user enters something. His inmidiatley entry is featured in #INPUT. I tried this, but somehow this does not work:
$('document').keydown( function(e) {
$('#INPUT').focus();
});
What should I do instead? thanks http://jsfiddle.net/GdVvd/
+3