Here is Jquery to enforce maxlength for textarea when you add the attribute \"maxlength\". Maxlength is not supported with IE. How do I adjust my code to handle multiple tex
This is the best solution! Put this into your script tag in HTML code
$("textarea[maxlength]").on("propertychange input", function() { if (this.value.length > this.maxlength) { this.value = this.value.substring(0, this.maxlength); } });
and now use for {your limit} chars limit.
{your limit}