Hi,I knew it can work instead if I called the same javascript function onChange event of TExtarea ,it will work but I can't specify maxlength=50 to TextArea object,the same is working for Text object.
Main Topics
Browse All TopicsHi
I am using Textarea type.I want to set maximum length to the textarea.
I am using following code for the same,but it is not working,
<textarea name="txtDescription" cols=10 rows=3 maxlength=50></textarea>
But it is not working,it takes chars beyond 50 also.
Help me inthe same
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I've got a script to add the MaxLength property to the TEXTAREA tag (I didn't write it, found it somewhere on the net):
You'll need a file, called maxlength.htc (code below) wich adds a behaviour to the TextArea tag.
In your stylesheet, add:
TEXTAREA { behavior: url(maxlength.htc);}
From that point on, you can use
<TEXTAREA MAXLENGTH=50></TEXTAREA>
Whereever you want.
---code for maxlength.htc---
<PUBLIC:COMPONENT id="bhvMaxlength" urn="maf:Maxlength">
<PUBLIC:PROPERTY name="maxLength" />
<PUBLIC:ATTACH event="onkeypress" handler="doKeypress" />
<PUBLIC:ATTACH event="onbeforepaste" handler="doBeforePaste" />
<PUBLIC:ATTACH event="onpaste" handler="doPaste" />
<SCRIPT language="JScript">
// Keep user from entering more than maxLength characters
function doKeypress(){
if(maxLength && value.length > maxLength-1){
event.returnValue = false;
maxLength = parseInt(maxLength);
}
}
// Cancel default behavior
function doBeforePaste(){
if(maxLength)
event.returnValue = false;
}
// Cancel default behavior and create a new paste routine
function doPaste(){
if(maxLength){
event.returnValue = false;
maxLength = parseInt(maxLength);
var oTR = element.document.selection
var iInsertLength = maxLength - value.length + oTR.text.length;
var sData = window.clipboardData.getDa
oTR.text = sData;
}
}
</SCRIPT>
</PUBLIC:COMPONENT>
I could not make this work using IE6/javascript. Maybe I am doing something wrong.
Added the line to the css as above to add the behavior to TEXTAREA.
Added the htc file with the code from above - just changed the SCRIPT LANGUAGE = Javascript.
Used the input tag as <TEXTAREA MAXLENGTH=5> as a test.
It just doesn't do anything.
I found this on the net, and it seems to fix the problems described herein:
<script language="jscript">
function LimitMultiLineLength(obj)
{
var iKey;
var eAny_Event = window.event;
iKey = eAny_Event.keyCode;
var re
re = new RegExp("\r\n","g")
x = obj.value.replace(re,"").l
if ((x >= obj.maxLength) && ((iKey > 33 && iKey < 255) || (iKey > 95 && iKey < 106)) && (iKey != 13))
{
if (obj.ErrorMessage )
{
alert(obj.ErrorMessage);
}
window.event.returnValue=f
}
}
</script>
called like this:
<textarea name="name" id="name" onkeypress="LimitMultiLine
there is no property like maxlengh in textarea u can use javascript for check this
code for this
<script language="javascript">
var text1;
function checklength(i)
{
var txt;
txt=document.form.textarea
n=txt.length;
if (n>i) //i is the maxlength of textarea which we have set to 80
{
alert('Text overflow');
document.form.textarea1.va
return;
}
text1=document.form.textar
}
</script>
<body>
<form>
<textarea name=textarea1 onkeydown="javascript:chec
</form>
</body>
I think this will help u.
The validate() works like a charm. Thank you! Now what if the form contains more than one textarea? I attempted to add additional variables to the script but I'm certain I have the syntax wrong:
<script language="javascript" type="text/javascript">
<!--
function validate() {
maxlength=200;
if(document.form.comments1
alert('Your comments must be 200 characters or less');
document.form.comments1.fo
return false;
} else {
return true;
}
}
function validate1() {
maxlength=200;
if(document.form.comments2
alert('Your comments must be 200 characters or less');
document.form.comments2.fo
return false;
} else {
return true;
}
}
function validate2() {
maxlength=200;
if(document.form.comments3
alert('Your comments must be 200 characters or less');
document.form.comments3.fo
return false;
} else {
return true;
}
}
//-->
</script>
AND THEN IN THE FORM TAG, I CALLED IT AS SUCH:
onsubmit="return validate(); return validate1(); return validate2()"
Since it doesn't work I'm sure I've got it wrong. Can you take it one step further and advise as to the correct syntax? Will this even work with more than one textarea field?
Thank you!
Hey, I know this one's already solved, but I have an alternative solution that I feel is better for a few reasons.
#1 It's re-usable for all text areas via one function
#2 It doesn't inform teh user that he/she is typing too many characters, it prevents them from doing so, sort of like maxlength
There's a downside: the user can see the typed character for an instand prior to the removal.
Here's the function:
function CheckMaxLength(Object, MaxLen)
{
if(Object.value.length > MaxLen)
{
Object.value = Object.value.substring(0, MaxLen);
}
}
And the implementation:
<textarea name="Responsibilities" onkeyup="CheckMaxLength(th
Passing the form object and using it's methods. Pretty simply and painless.
This is a little cleaner - it imposes the length limit by cancelling the extra keypresses rather than using the substring() trick --
function imposeMaxLength(Object, MaxLen)
{
return (Object.value.length <= MaxLen);
}
Implementation:
<textarea name="myName" onkeypress="return imposeMaxLength(this, 15);" ><textarea>
Business Accounts
Answer for Membership
by: seanpowellPosted on 2003-10-29 at 02:14:21ID: 9640628
Hi, you're best bet is to set this in a basic javscript function, like so:
Area.value .length>=m axlength) { a.focus();
value.leng th>=maxlen gth) { us();
<html>
<head>
<title>Category</title>
<script language="javascript" type="text/javascript">
<!--
function validate() {
maxlength=50;
if(document.myForm.theText
alert('Your comments must be 50 characters or less');
document.myForm.theTextAre
return false;
} else {
return true;
}
}
//-->
</script>
</head>
<body>
<form name="myForm" onsubmit="return validate();">
Comments:<br />
<textarea name="theTextArea" cols="10" rows="3"></textarea><br />
<input type="submit">
</form>
</body>
</html>
How to Customize
============
Make sure that you change the following 2 values to suit your page, both in the javascript, and the form:
1. myForm
2. theTextArea
If the name of your form is hello and the name of your text area is goodbye, then the code above would be:
function validate() {
maxlength=50;
if(document.hello.goodbye.
alert('Your comments must be 50 characters or less');
document.hello.goodbye.foc
return false;
} else {
return true;
}
}
and
<form name="hello" onsubmit="return validate();">
Comments:<br />
<textarea name="goodbye" cols="10" rows="3"></textarea><br />
<input type="submit">
</form>
Thanks