vote up 3 vote down star

How do you impliment a character limit on a textbox in HTML? I know it's a basic question, but I don't really use HTML too much, so I don't know.

flag

6 Answers

vote up 3 vote down check

There are 2 mains solutions :

The pure HTML one :

<input type="text" id="Textbox" name="Textbox" maxlength="10" />

The javascript one (attach it to a onKey Event) :

function limitText(limitField, limitNum) {
    if (limitField.value.length > limitNum) {
        limitField.value = limitField.value.substring(0, limitNum);
    } 
}

But anyway, there is no good solution. You can not adapt to every client's bad HTML implementation, it's an impossible fight to win. That's why it's far better to check it on the server side, with a PHP / Python / whatever script.

link|flag
1  
Check on the server as a final sanity check, but add client-side enhancement if you can do so; it makes for a richer user experience. – Rob Jun 4 at 8:48
Sure, more work, but definitely the best way to go. – e-satis Jun 4 at 12:15
vote up 16 vote down

there's a maxlength attribute

<input type="text" name="textboxname" maxlength="100" />
link|flag
This is true, but some clients don't check this. This is especcially true for mobile phone based clients. – Drejc Sep 22 '08 at 6:31
There are also ways to remove them. For example the Firefox Web Developer Extension has a Remove Maximum lengths function. – Sam Hasler Sep 24 '08 at 2:55
vote up 2 vote down

use the "maxlength" attribute as others have said.

if you need to put a max character length on a text AREA, you need to turn to Javascript. Take a look here: http://www.quirksmode.org/dom/maxlength.html

link|flag
vote up 5 vote down

In addition to the above, I would like to point out that client-side validation (HTML code, javascript, etc.) is never enough. Also check the length server-side, or just don't check at all (if it's not so important that people can be allowed to get around it, then it's not important enough to really warrant any steps to prevent that, either).

Also, fellows, he (or she) said HTML, not XHTML. ;)

link|flag
i agree. one can POST data directly into a web site using some scripting tool, so in that case maxlength and other browser-side validations are not foolproof – cruizer Sep 22 '08 at 6:12
or use firebug and remove the maxlength attribute. – Zach Sep 22 '08 at 6:19
vote up 0 vote down

For the <input> element there's the maxlength attribute:

<input type="text" id="Textbox" name="Textbox" maxlength="10" />

(by the way, the type is "text", not "textbox" as others are writing), however, you have to use javascript with <textarea>s. Either way the length should be checked on the server anyway.

link|flag
vote up 0 vote down

i came in buckets

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.