Untitled

 avatar
unknown
plain_text
2 months ago
261 B
4
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