This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The setCustomValidity() method of the HTMLTextAreaElement interface sets the custom validity message for the <textarea> element. Use the empty string to indicate that the element does not have a custom validity error.
setCustomValidity(string)
stringThe string containing the error message. The empty string removes any custom validity errors.
None (undefined).
In this example, if the <textarea>'s doesn't pass constraint validation, we provide custom errors based on the constraint that is failing validation. If the value is valid, we set the custom error to an empty string:
const comment = document.getElementById("comment");
if (comment.validity.valueMissing) {
comment.setCustomValidity("We can't submit a blank comment!");
} else if (comment.validity.tooShort) {
comment.setCustomValidity("Tell us more! Your comment is too short.");
} else if (comment.validity.tooLong) {
comment.setCustomValidity(
"Loquacious much? Keep it to under 800 characters!",
);
} else {
comment.setCustomValidity("");
}
| Specification |
|---|
| HTML> # dom-cva-setcustomvalidity-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
setCustomValidity |
4This method only updates the validation error popup, not the tooltip that appears when hovering the mouse over the element, see bug 41380670. |
12 | 4 | ≤12.1 | 5 | 18This method only updates the validation error popup, not the tooltip that appears when hovering the mouse over the element, see bug 41380670. |
4 | ≤12.1 | 5 | 1.0This method only updates the validation error popup, not the tooltip that appears when hovering the mouse over the element, see bug 41380670. |
4.4This method only updates the validation error popup, not the tooltip that appears when hovering the mouse over the element, see bug 41380670. |
5 |
<textarea>HTMLTextAreaElementHTMLTextAreaElement.validityHTMLTextAreaElement.checkValidity()HTMLTextAreaElement.reportValidity():valid and :invalid pseudo-classes
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement/setCustomValidity