If am entering some values in text box it should be simultaneously displayed in other text box using html and js in the same page.
That is if i enter test in text box then the other text box should contain the alphabet test immediately.
Is that possible. If yes how?
kindly clarify.
thanks in advance
Use the
onkeydownevent, combined with a timer that will execute immediately afterwards:Example
For Opera, you will need to use
onkeypressto capture repeated input (holding the key down).