Tag Archives: How to impose maxlength on textArea using JQuery

How to impose maxlength on textArea using JQuery

How to impose maxlength on textArea using JQuery $(function() { // Get all textareas that have a “maxlength” property. $(‘textarea[maxlength]‘).each(function() { // Store the jQuery object to be more efficient… var $textarea = $(this); // Store the maxlength and value … Continue reading

Posted in javascript, jquery | Tagged | Leave a comment