How can I get the length of text entered in a textbox using jQuery? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:24:21Z http://stackoverflow.com/feeds/question/815146 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery 2 How can I get the length of text entered in a textbox using jQuery? Blankman 2009-05-02T16:34:13Z 2009-05-26T14:55:30Z <p>How can I get the length of text entered in a textbox using jQuery?</p> http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery/815149#815149 10 Answer by Justice for How can I get the length of text entered in a textbox using jQuery? Justice 2009-05-02T16:35:51Z 2009-05-02T16:35:51Z <pre><code>var myLength = $("#myTextbox").val().length; </code></pre> http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery/815157#815157 6 Answer by Jonathan Tran for How can I get the length of text entered in a textbox using jQuery? Jonathan Tran 2009-05-02T16:40:01Z 2009-05-04T21:45:36Z <p>If your textbox has an id attribute of "mytextbox", then you can get the length like this:</p> <pre><code>var myLength = $("#mytextbox").val().length; </code></pre> <ul> <li><code>$("#mytextbox")</code> finds the textbox by its id.</li> <li><code>.val()</code> gets the value of the input element entered by the user, which is a string.</li> <li><code>.length</code> gets the number of characters in the string.</li> </ul> http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery/815569#815569 0 Answer by daveslab for How can I get the length of text entered in a textbox using jQuery? daveslab 2009-05-02T20:42:00Z 2009-05-02T20:42:00Z <p>You need to only grab the element with an appropriate jQuery selector and then the <code>.val()</code> method to get the string contained in the input textbox and then call the <code>.length</code> on that string.</p> <p>You can grab the length of all the input textboxes on the page with the follow selector:</p> <p><code>$('input:text').val().length</code></p> <p>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 <code>:text</code> to ensure it's an input textbox.</p> <p>On another note, to get the length of a string contained in another, non-input element, you can use the <code>.text()</code> function to get the string and <em>then</em> use <code>.length</code> on <em>that</em> string to find its length.</p>