How can i retrieve the contents of an input field as they are entered with JavaScript?
i know .onChange only works after the focus is changed from the input field?
thanks
|
How can i retrieve the contents of an input field as they are entered with JavaScript? i know .onChange only works after the focus is changed from the input field? thanks
| |||||||
feedback
|
|
You should try the onKeyUp event. Here's a simple example:
| |||||||||
feedback
|
|
EDIT: since writing this answer, I learned of the HTML5
Note that onkeyup will only fire after the key is lifted, so for best results use onkeypress and/or onkeydown. If you use a timer with a delay of 0ms, you can get the new value immediately after it is updated:
Example: http://jsfiddle.net/fgcYD/ Note that this won't catch pasting or dragging and dropping text into the box. For those you need other events. | |||||||||
feedback
|
|
If your input field has focus, use the onKeyUp event to monitor the user typing text. | |||
|
feedback
|
|
Once I had used a combination of "onKeyup", "onBlur", onKeyPress to handle all the circumstances while making a TextBox to allow only numeric values. Like this:
with this .js code: http://www.mredkj.com/tutorials/validate2.js And it still works pretty well. | |||
|
feedback
|