User riddle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T02:01:49Zhttp://stackoverflow.com/feeds/user/132935http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1120335/how-to-make-css-visible-only-for-opera/1352195#13521950Answer by riddle for How to make CSS visible only for Operariddle2009-08-29T19:29:18Z2009-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-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/1081114#1081114Comment by riddle on Prevent default behavior in text input while pressing arrow upriddle2009-07-04T10:58:48Z2009-07-04T10:58:48ZBusted it! Thanks a lot, it’s perfect. :)http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080607#1080607Comment by riddle on Prevent default behavior in text input while pressing arrow upriddle2009-07-03T19:56:27Z2009-07-03T19:56:27ZUnfortunately, <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#1080549Comment by riddle on Prevent default behavior in text input while pressing arrow upriddle2009-07-03T19:29:20Z2009-07-03T19:29:20ZThanks. 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.