Is there an HTML5 attribute to set the maximum amount of characters in a textarea or other form?
I want a yes/no answer not some other method using javascript.
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.
|
|
|||
|
|
|
Yup, maxlength works still: http://jsfiddle.net/xhqsB/1/ (demo has textarea and input type of text) Beware that it is fairly easy for the client to bypass these restrictions, so if you are submitting data to a form, have the server-side script check the length of the submitted data. |
|||||||||||||
|
|
see: textarea – text input area - HTML5 the see other similar questions: jquery - TextArea MaxLength - Supported or Not Supported? - Stack Overflow How to impose maxlength on textArea in HTML , Javascript - Stack Overflow |
|||
|
|