Prevent default behavior in text input while pressing arrow up - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T17:04:30Z http://stackoverflow.com/feeds/question/1080532 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up 1 Prevent default behavior in text input while pressing arrow up riddle 2009-07-03T19:17:10Z 2009-07-03T23:18:52Z <p>I’m working with basic HTML <code>&lt;input type="text"/&gt;</code> text field with a numeric value.</p> <p>I’m adding JavaScript event <code>keyup</code> to see when user presses arrow up key (<code>e.which == 38</code>) – then I increment the numeric value.</p> <p>The code works well, but there’s one thing that bugs me. Both Safari/Mac and Firefox/Mac move cursor at the very beginning when I’m pressing the arrow up key. This is a default behavior for every <code>&lt;input type="text"/&gt;</code> text field as far as I know and it makes sense.</p> <p>But this creates not a very aesthetic effect of cursor jumping back and forward (after value was altered).</p> <p>The jump at the beginning happens on <code>keydown</code> but even with this knowledge I’m not able to prevent it from occuring. I tried the following:</p> <pre><code>input.addEventListener('keydown', function(e) { e.preventDefault(); }, false); </code></pre> <p>Putting <code>e.preventDefault()</code> in <code>keyup</code> event doesn’t help either.</p> <p>Is there any way to prevent cursor from moving?</p> http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080549#1080549 0 Answer by Leahn Novash for Prevent default behavior in text input while pressing arrow up Leahn Novash 2009-07-03T19:24:20Z 2009-07-03T19:24:20Z <p>Probably not. You should instead seek for a solution to move the cursor back to the end of the field where it was. The effect would be the same for the user since it is too quick to be perceived by a human.</p> <p>I googled some and found this piece of code. I can't test it now and it is said to not to work on IE 6.</p> <p>textBox.setSelectionRange(textBox.value.length, textBox.value.length);</p> http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080607#1080607 0 Answer by shw for Prevent default behavior in text input while pressing arrow up shw 2009-07-03T19:42:13Z 2009-07-03T19:42:13Z <p>I tested the code and it seems that it cancels the event but if you don't press the arrow for very short time - it fires keypress event and that event actually moves cursor. Just use preventDefault() also in keypress event handler and it should be fine.</p> http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1081114#1081114 1 Answer by porneL for Prevent default behavior in text input while pressing arrow up porneL 2009-07-03T23:18:52Z 2009-07-03T23:18:52Z <p>To preserve cursor position, backup <code>input.selectionStart</code> before changing value (that's probably non-standard, but I couldn't be bothered to use DOM Ranges).</p> <p>The problem is that WebKit reacts to <code>keydown</code> and Opera prefers <code>keypress</code>, so there's cludge: both are handled and throttled.</p> <pre><code>var ignoreKey = false; var handler = function(e) { if (ignoreKey) { e.preventDefault(); return; } if (e.keyCode == 38 || e.keyCode == 40) { var pos = this.selectionStart; this.value = (e.keyCode == 38?1:-1)+parseInt(this.value,10); this.selectionStart = pos; this.selectionEnd = pos; ignoreKey = true; setTimeout(function(){ignoreKey=false},1); e.preventDefault(); } }; input.addEventListener('keydown',handler,false); input.addEventListener('keypress',handler,false); </code></pre>