Wednesday 27 March 2013

How to set maximum length to textarea in html


 Set maximum length to textarea in html
<textarea rows="3" cols="10" onkeypress="if (this.value.length > 10) { return false; }" ></textarea>

No comments:

Post a Comment