$('input').keyup(function(e){
var k = e.keyCode ? e.keyCode : e.which;
console.log(k);
});
.
<input type="text" name="" autocomplete="off"/>
Why keyup fires twice but only after second strike for special keys (arrows, space, backspace etc) ?
- Are any solutions to fix this issue?
- the autocomplete it's turned off
- In IE it is working fine
- With keydown or keypress is working fine for FF and Chrome
- But I can't use keypress because it doesn't work for IE for special keys
- I can't use keydown because I need the value of the input including the character I just type. Like this $(this).val(); - (I needed it for a live search). Keydown will give the value but without the last char. Maybe you could give me an idea in this direction - how to capture the value including last char with keydown?
keypressjust fine when the user presses space, andkeyupwill only ever fire once when a key is released. – Tim Down Jan 28 '10 at 16:41keyupevent is fired for any key in Firefox or Chrome, and if you're seeing two then you must have an error in your code. – Tim Down Jan 28 '10 at 22:34