Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save belalismail/00f98b3600f6d8e539d3cf28b5f8e50d to your computer and use it in GitHub Desktop.
Save belalismail/00f98b3600f6d8e539d3cf28b5f8e50d to your computer and use it in GitHub Desktop.
const textarea = document.getElementById('TextArea_ID'); // Replace the id
textarea.addEventListener('input', function() {
const minTextLength = 10; // Set Minimum required text length
if (textarea.value.length < minTextLength) {
textarea.setCustomValidity('Please enter at least ' + minTextLength + ' characters.');
} else {
textarea.setCustomValidity('');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment