How can I get the length of text entered in a textbox using jQuery?
|
1
|
|
|
|
|
|
|
||
|
|
|
|
If your textbox has an id attribute of "mytextbox", then you can get the length like this:
|
||
|
|
|
You need to only grab the element with an appropriate jQuery selector and then the You can grab the length of all the input textboxes on the page with the follow selector:
This will return an array of the lengths of the various inputs. You can also change the selector to get a more specific element but keep the On another note, to get the length of a string contained in another, non-input element, you can use the |
||
|
|
