Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
42
rated 0 times [  45] [ 3]  / answers: 1 / hits: 33667  / 15 Years ago, thu, august 27, 2009, 12:00:00

My site has an input box, which has a onkeydown event that merely alerts the value of the input box.


Unfortunately the value of the input does not include the changes due to the key being pressed.


For example for this input box:


<input onkeydown="alert(this.value)" type="text" value="cow" />

The default value is "cow". When you press the key s in the input, you get an alert("cow") instead of an alert("cows"). How can I make it alert("cows") without using onkeyup? I don't want to use onkeyup because it feels less responsive.


One partial solution is to detect the key pressed and then append it to the input's value, but this doesn't work in all cases such as if you have the text in the input highlighted and then you press a key.


Anyone have a complete solution to this problem?


More From » forms

 Answers
24

NOTE: It's over a decade (!!) since I wrote this answer. The input event has become ubiquitous, and should be used instead of this hack.


What does keydown/keyup even mean for tablet and voice input devices?




The event handler only sees the content before the change is applied, because the mousedown and input events give you a chance to block the event before it gets to the field.


You can work around this limitation by giving the browser a chance to update the field's contents before grabbing its value - the simplest way is to use a small timeout before checking the value.


A minimal example is:


<input id="e"
onkeydown="window.setTimeout( function(){ alert(e.value) }, 1)"
type="text" value="cow" />

This sets a 1ms timeout that should happen after the keypress and keydown handlers have let the control change its value. If your monitor is refreshing at 60fps then you've got 16ms of wiggle room before it lags 2 frames.




A more complete example (which doesn't rely on named access on the Window object would look like:




var e = document.getElementById('e');
var out = document.getElementById('out');

e.addEventListener('input', function(event) {
window.setTimeout(function() {
out.value = event.target.value;
}, 1);
});

<input type=text id=e value=cow>
<input type=text id=out readonly>




When you run the above snippet, try some of the following:



  • Put the cursor at the start and type

  • Paste some content in the middle of the text box

  • Select a bunch of text and type to replace it


[#98827] Friday, August 21, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
malkajillc

Total Points: 652
Total Questions: 107
Total Answers: 98

Location: Finland
Member since Sat, Nov 6, 2021
3 Years ago
malkajillc questions
;