User riddle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:01:49Z http://stackoverflow.com/feeds/user/132935 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1120335/how-to-make-css-visible-only-for-opera/1352195#1352195 0 Answer by riddle for How to make CSS visible only for Opera riddle 2009-08-29T19:29:18Z 2009-08-29T19:29:18Z <p>You could use Modernizr ( <a href="http://www.modernizr.com/" rel="nofollow">http://www.modernizr.com/</a> ) to detect CSS features you want to use – it applies class names to the body element so you can then construct your CSS accordingly.</p> 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/1081114#1081114 Comment by riddle on Prevent default behavior in text input while pressing arrow up riddle 2009-07-04T10:58:48Z 2009-07-04T10:58:48Z Busted it! Thanks a lot, it’s perfect. :) http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080607#1080607 Comment by riddle on Prevent default behavior in text input while pressing arrow up riddle 2009-07-03T19:56:27Z 2009-07-03T19:56:27Z Unfortunately, <code>e.preventDefault()</code> in <code>keypress</code> event prevents me from entering anything there (I want inputs to work like in Firebug). And it doesn’t solve my problem, at least in my browser – cursor still jumps at the very beginning. http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080549#1080549 Comment by riddle on Prevent default behavior in text input while pressing arrow up riddle 2009-07-03T19:29:20Z 2009-07-03T19:29:20Z Thanks. Actually updating input.value will result in cursor moving back at the end. So I might detect cursor’s position and then restore it after change is made (if it’s in the middle of number, for example). But I’m still looking for better solution, if it’s available.