ValidityState: rangeOverflow property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since December 2018.

The read-only rangeOverflow property of the ValidityState interface indicates if the value of an <input>, after having been edited by the user, does not conform to the constraints set by the element's max attribute.

If the field is numeric in nature, including the date, month, week, time, datetime-local, number and range types and a max value is set, if the value doesn't conform to the constraints set by the max value, the rangeOverflow property will be true.

Value

A boolean that is true if the ValidityState does not conform to the constraints.

Examples

Input with numeric overflow

The following example checks the validity of a numeric input element. A constraint has been added using the max attribute which sets a maximum value of 18 for the input. If the user enters a number higher than 18, the element fails constraint validation, and the styles matching :invalid and :out-of-range CSS pseudo-classes

css
/* or :invalid */
input:out-of-range {
  outline: red solid 3px;
}
html
<pre id="log">Validation logged here...</pre>
<input type="number" id="age" max="18" />
js
const userInput = document.getElementById("age");
const logElement = document.getElementById("log");

function log(text) {
  logElement.innerText = text;
}

userInput.addEventListener("input", () => {
  userInput.reportValidity();
  if (userInput.validity.rangeOverflow) {
    log("Number is too high!");
  } else {
    log("Input is valid…");
  }
});

Specifications

Specification
HTML
# dom-validitystate-rangeoverflow

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
rangeOverflow

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

See also