The ValidityState interface represents the validity states that an element can be in, with respect to constraint validation. Together, they help explain why an element's value fails to validate, if it's not valid.
For each of these Boolean properties, a value of true indicates that the specified reason validation may have failed is true, with the exception of the valid property, which is true if the element's value obeys all constraints.
ValidityState.badInput Read only
Boolean indicating the user has provided input that the browser is unable to convert.ValidityState.customError Read only
Boolean indicating the element's custom validity message has been set to a non-empty string by calling the element's setCustomValidity() method.ValidityState.patternMismatch Read only
Boolean indicating the value does not match the specified pattern.ValidityState.rangeOverflow Read only
Boolean indicating the value is greater than the maximum specified by the max attribute.ValidityState.rangeUnderflow Read only
Boolean indicating the value is less than the minimum specified by the min attribute.ValidityState.stepMismatch Read only
Boolean indicating the value does not fit the rules determined by the step attribute (that is, it's not evenly divisible by the step value).ValidityState.tooLong Read only
Boolean indicating the value exceeds the specified maxlength for HTMLInputElement or HTMLTextAreaElement objects. Note: This will never be true in Gecko, because elements' values are prevented from being longer than maxlength.
ValidityState.tooShort Read only
Boolean indicating the value fails to meet the specified minlength for HTMLInputElement or HTMLTextAreaElement objects.ValidityState.typeMismatch Read only
Boolean indicating the value is not in the required syntax (when type is email or url).ValidityState.valid Read only
Boolean indicating the element meets all constraint validations, and is therefore considered to be valid.ValidityState.valueMissing Read only
Boolean indicating the element has a required attribute, but no value.| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'ValidityState' in that specification. | Living Standard | Live Standard |
| HTML 5.1 The definition of 'ValidityState' in that specification. | Recommendation | No change from the previous snapshot HTML5. |
| HTML5 The definition of 'ValidityState' in that specification. | Recommendation | First snapshot of HTML Living Standard containing this interface. |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | 10 | (Yes) | 10.0.3 |
badInput | ? | (Yes) | 29 (29) | Not supported | ? | 10.0.3 |
| Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
badIndput | ? | ? | 29.0 (29) | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ValidityState