I want to get the string length when a key is pressed like StackOverflow does.

I have tried to do this with onblur, but it's not working. How do I do this?
|
I want to get the string length when a key is pressed like StackOverflow does.
I have tried to do this with |
||||
|
As for the question which event you should use for this: use the Here’s an example, DOM0-style:
The other question is how to count the number of characters in the string. Depending on your definition of “character”, all answers posted so far are incorrect. The However, for supplementary (non-BMP) symbols, things are a bit different. For example, Luckily, it’s still possible to count the number of Unicode symbols in a JavaScript string through some hackery. You could use Punycode.js’s utility functions to convert between UCS-2 strings and UTF-16 code points for this:
P.S. I just noticed the counter script that Stack Overflow uses gets this wrong. Try entering |
|||||
|
|
Use keyup event: HTML:
JavaScript:
Demo: EDIT: Just a note for those that suggest keydown. That won't work. The keydown fires before character is added to the input box or textarea, so the length of the value would be wrong (one step behind). Therefore, the only solution that works is keyup, which fires after the character is added. |
|||||||||||||||
|
|
You should bind a function to keyup event
with jquery
|
|||
|
|
|
I'm not sure what you mean by having tried it onblur, but to get the length of any string, use its .length property, so in the case of a textbox or textarea:
Changing that ID, of course, to whatever the actual ID is. |
|||
|
The quick and dirty way would be to simple bind to the keyup event. For example : http://jsfiddle.net/dggc8/
But better would be to bind a reusable function to several events. For example also to the change(), so you can also anticipate text changes such as pastes (with the context menu, shortcuts would also be caught by the keyup ) |
|||
|
|
|
Basically: assign a |
|||
|
|
|
Try
html
it will return the length of string Instead of blur use keydown event |
|||
|
|
first you need to defined a keypressed handler or some kind of a event trigger to listen , btw , getting the length is really simple like mentioned above |
|||
|
|
onkeyup/onkeydownevent. Could you post the code you tried? – Fabrizio Calderan Jun 15 '12 at 8:02