show/hide this revision's text 2 added 206 characters in body

Try this: http://www.quirksmode.org/dom/maxlength.html

Quirksmode goes through an easy way to implement the maxlength attribute on textareas, which isn't natively supported.

And to directly answer your question:

var character = String.fromCharCode(e.charCode);

Where e is the event object of the keypress event.

show/hide this revision's text 1

Try this: http://www.quirksmode.org/dom/maxlength.html

Quirksmode goes through an easy way to implement the maxlength attribute on textareas, which isn't natively supported.