HTMLObjectElement.setCustomValidity
The setCustomValidity()
method of the HTMLObjectElement
interface sets a custom validity message for the element.
Syntax
HTMLObjectElement.setCustomValidity(message);
Parameters
- error
-
The message to use for validity errors.
Return value
undefined
Exceptions
None.
Examples
In this example, we pass the ID of an input element, and set different error messages depending on whether the value is missing, too low or too high. Additionally you must call the reportValidity method on the same element or nothing will happen.
function validate(inputID) { const input = document.getElementById(inputID); const validityState = input.validity; if (validityState.valueMissing) { input.setCustomValidity('You gotta fill this out, yo!'); } else if (validityState.rangeUnderflow) { input.setCustomValidity('We need a higher number!'); } else if (validityState.rangeOverflow) { input.setCustomValidity('Thats too high!'); } else { input.setCustomValidity(''); } input.reportValidity(); }
It's vital to set the message to an empty string if there are no errors. As long as the error message is not null, the form will not pass validation and will not be submitted.
Specifications
Specification |
---|
HTML Standard (HTML) # dom-cva-setcustomvalidity-dev |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
setCustomValidity |
10 |
12 |
4 |
10 |
≤12.1 |
5.1 |
≤37 |
18 |
4 |
≤12.1 |
5 |
1.0 |
See also
validityState
validityState.valueMissing
validityState.typeMismatch
validityState.patternMismatch
validityState.tooLong
validityState.tooShort
validityState.rangeUnderflow
validityState.rangeOverflow
validityState.stepMismatch
validityState.valid
validityState.customError
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/setCustomValidity