Untitled
unknown
plain_text
8 months ago
261 B
6
Indexable
$('#bio').on('input', function () {
var bioLength = $(this).val().length;
if (bioLength < 20) {
$('#bioError').text('Bio must be at least 20 characters long.');
} else {
$('#bioError').text('');
}
})Editor is loading...
Leave a Comment