Search code examples
html

Text Area maxlength not working


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.


Solution

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