I am trying to get the text in a text box as the user types in it (jsfiddle playground):
function edValueKeyPress() {
var edValue = document.getElementById("edValue");
var s = edValue.value;
var lblValue = document.getElementById("lblValue");
lblValue.innerText = "The text box contains: " + s;
//var s = $("#edValue").val();
//$("#lblValue").text(s);
}
<input id="edValue" type="text" onKeyPress="edValueKeyPress()"><br>
<span id="lblValue">The text box contains: </span>
The code runs without errors, except that the value of the input text
box, during onKeyPress
is always the value before the change:
Question: How do I get the text of a text box during
onKeyPress
?
Bonus Chatter
There are three events related to "the user is typing" in the HTML DOM:
onKeyDown
onKeyPress
onKeyUp
In Windows, the order of WM_Key
messages becomes important when the user holds down a key, and the key begins to repeat:
WM_KEYDOWN('a')
- user has pushed down the A keyWM_CHAR('a')
- ana
character has been received from the userWM_CHAR('a')
- ana
character has been received from the userWM_CHAR('a')
- ana
character has been received from the userWM_CHAR('a')
- ana
character has been received from the userWM_CHAR('a')
- ana
character has been received from the userWM_KEYUP('a')
- the user has released the A key
Will result in five characters appearing in a text control: aaaaa
The important point being that the you respond to the WM_CHAR
message, the one that repeats. Otherwise you miss events when a key is pressed.
In HTML things are slightly different:
onKeyDown
onKeyPress
onKeyDown
onKeyPress
onKeyDown
onKeyPress
onKeyDown
onKeyPress
onKeyDown
onKeyPress
onKeyUp
Html delivers an KeyDown
and KeyPress
every key repeat. And the KeyUp
event is only raised when the user releases the key.
Take aways
- I can respond to
onKeyDown
oronKeyPress
, but both are still raised before theinput.value
has been updated - I cannot respond to
onKeyUp
, because it doesn't happen as the text in the text-box changes.
Question: How do I get the text of a text-box during onKeyPress
?
Handling the
input
event is a consistent solution: it is supported fortextarea
andinput
elements in all contemporary browsers and it fires exactly when you need it:I'd rewrite this a bit, though:
By using event.key we can get values prior entry into HTML Input Text Box. Here is the code.
I normally concatenate the field's value (i.e. before it's updated) with the key associated with the key event. The following uses recent JS so would need adjusting for support in older IE's.
Recent JS example
Support for older IEs example
[EDIT - this approach, by default, disables key presses for things like back space, CTRL+A. The code above accommodates for the former, but would need further tinkering to allow for the latter, and a few other eventualities. See Ian Boyd's comment below.]
Try to concatenate the event charCode to the value you get. here is a sample of my code.
<input type="text" name="price" onkeypress="return (cnum(event,this))" maxlength="10"> <p id="demo"></p>
js:
The value in
ab
will get the latest value in the input field.Keep it simple. Use both
onKeyPress()
andonKeyUp()
:This takes care of getting the most updated string value (after key up) and also updates if the user holds down a key.
jsfiddle: http://jsfiddle.net/VDd6C/8/