View Full Version : letter count limit


Star
11-14-2003, 09:56 PM
hi there

Does anyone know how to put limits on word boxes?

take this text box for example that I am typing in this question, how do I put a limit of letter which can appear...say I wanted only 300 letters?

thanks

Alcy
11-14-2003, 10:02 PM
Like this?
http://javascript.internet.com/forms/limit-textarea.html

Star
11-14-2003, 10:20 PM
yes! exactly what I was looking for!! thanks a million!

Star
11-14-2003, 11:51 PM
hi!

Althought the code worked like a gem, it disables my e-mail form, it wont submit the information typed in, filled in, in my email form.

It makes the submit form redunant!

help!
thanks

Alcy
11-15-2003, 02:39 AM
Just add the parts in bold into your textarea ^_^

<textarea name=message wrap=physical cols=28 rows=4 onKeyDown="textCounter(this.form.message,this.form.remLen,125 );" onKeyUp="textCounter(this.form.message,this.form.remLen,125 );"></textarea>
<br>
<input readonly type=text name=remLen size=3 maxlength=3 value="125"> characters left