i have the below function which is working well but the problem is after exceeding the 500 characters it is allowing the user to type i.e., it is accepting the characters instead of restricting the entry of the characters how to modify. and is there any possibility when we have multiple text area i have to repeat the below for every text area instead can we make this a function and just pass parameters so that the same function can be called for every text area on the basis of the selected text area from multiple text areas. i am new to jquery pleas help
$('#txtAboutMe').keyup(function () {
var text = $(this).val();
var textLength = text.length;`enter code here`
if (text.length > maxLength) {
$(this).val(text.substring(0, (maxLength)));
alert("Sorry, you only " + maxLength + " characters are allowed");
}
else {
//alert("Required Min. 500 characters");
}
});"