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 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 characters beyond 50.

share|improve this question
possible duplicate of How to impose maxlength on textArea in HTML , Javascript – Dominic Rodger Aug 16 '10 at 8:35

3 Answers

up vote 2 down vote accepted

There's no maxlength attribute defined for textarea. You need to implement this using javascript.

share|improve this answer

Maxlength attribute for textarea works in Chrome.

share|improve this answer

please use jquery for reference

<script type="text/javascript">  
$().ready(function(){   

     $("#textareaId").maxLength(20);   

 });
</script>  
share|improve this answer
SCRIPT438: Object doesn't support property or method 'maxLength' – Raghav May 14 at 5:36

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.