Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to limit the number of characters entered in a textarea as shown:

<div>
 @Html.TextAreaFor(x => x.StudentName, new { @maxlength = "1000" })
</div>

This works fine in Firefox and Chrome but the maxlength attribute doesn't work in IE. How do I do that??

share|improve this question
@TimMedora: So why not mark the question as a duplicate? – leppie Feb 2 '12 at 8:46
@leppie - because last time I searched for a maxlength script that worked in all cases, I ended up writing my own. The post I linked to is over 18 months old; there may be a better solution out there but I figured it would give the OP somewhere to start at least. Just my opinion. – Tim Medora Feb 2 '12 at 8:49

3 Answers

up vote 4 down vote accepted

The maxlength attribute is not standard for <textarea> in HTML 4.01. It is defined in HTML5 though but I guess IE doesn't implement it. To make it work across all browsers you could use javascript. Here's an example.

share|improve this answer
It does work in IE10 according to this chart from wufoo: wufoo.com/html5/attributes/03-maxlength.html – Sharon Aug 14 '12 at 0:45
1  
@Sharon, IE10 is not RTM yet. – Darin Dimitrov Aug 14 '12 at 5:13

You can use javascript as well, which is way easier:

<textarea  name="question" cols="100" rows="8" maxlength="500px" onKeyPress="return ( this.value.length < 1000 );"></textarea>
share|improve this answer

Use the following Jquery - for eg, if you want to restrict the length to 48

$("textarea").keypress(function(e){
    var lengthF = $(this).val();

    if (lengthF.length > 48){
        e.preventDefault();
    }
});
share|improve this answer
this fails when the user tries to press delete or backspace. The user will be stuck after reaching the limit – Mandeep Jain May 14 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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