How to determine if a keydown event occurs on a printable character? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:43:14Zhttp://stackoverflow.com/feeds/question/529643http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/529643/how-to-determine-if-a-keydown-event-occurs-on-a-printable-character0How to determine if a keydown event occurs on a printable character?Ben5e2009-02-09T19:55:46Z2009-02-09T20:16:21Z
<p>We are trying to prevent users from typing beyond the maximum characters our DB allows for text area fields in our web app. Once they have reached the max length allowed in the text area we would still like to allow them to hit keys that are non-printing for example: Tab, backspace, ctrl+s, etc.</p>
<p>I'm wondering if there is a simple way to detect if a keycode is a printable character. I thought something like String.fromCharCode might do the trick and return false if it couldn't do the conversion, but doesn't seem to behave that way. </p>
http://stackoverflow.com/questions/529643/how-to-determine-if-a-keydown-event-occurs-on-a-printable-character/529660#5296600Answer by Cato Johnston for How to determine if a keydown event occurs on a printable character?Cato Johnston2009-02-09T19:58:20Z2009-02-09T19:58:20Z<p>You could just set length of the textbox to the max number of characters allowed by the database</p>
<p><a href="http://www.w3schools.com/TAGS/att_input_maxlength.asp" rel="nofollow">W3Schools</a></p>
http://stackoverflow.com/questions/529643/how-to-determine-if-a-keydown-event-occurs-on-a-printable-character/529681#5296811Answer by Luca Matteis for How to determine if a keydown event occurs on a printable character?Luca Matteis2009-02-09T20:03:04Z2009-02-09T20:16:21Z<p>Try this: <a href="http://www.quirksmode.org/dom/maxlength.html" rel="nofollow">http://www.quirksmode.org/dom/maxlength.html</a></p>
<p>Quirksmode goes through an easy way to implement the <code>maxlength</code> attribute on textareas, which isn't natively supported.</p>
<p>And to directly answer your question:</p>
<pre><code>var character = String.fromCharCode(e.charCode);
</code></pre>
<p>Where <code>e</code> is the event object of the <code>keypress</code> event.</p>