Prevent default behavior in text input while pressing arrow up - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T17:04:30Zhttp://stackoverflow.com/feeds/question/1080532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up1Prevent default behavior in text input while pressing arrow upriddle2009-07-03T19:17:10Z2009-07-03T23:18:52Z
<p>I’m working with basic HTML <code><input type="text"/></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><input type="text"/></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#10805490Answer by Leahn Novash for Prevent default behavior in text input while pressing arrow upLeahn Novash2009-07-03T19:24:20Z2009-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#10806070Answer by shw for Prevent default behavior in text input while pressing arrow upshw2009-07-03T19:42:13Z2009-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#10811141Answer by porneL for Prevent default behavior in text input while pressing arrow upporneL2009-07-03T23:18:52Z2009-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>