HTMLInputElement: max property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Themax property of theHTMLInputElement interface reflects the<input> element'smax attribute, which generally defines the maximum valid value for a numeric or date-time input. If the attribute is not explicitly set, themax property is an empty string.
In this article
Value
A string representing the element'smax value or an empty string if nomax is explicitly set.
Example
js
const inputElement = document.querySelector("#time");console.log(inputElement.max); // the current value of the max attributeinputElement.max = "18:00:00"; // sets the max value to 6pmSpecifications
| Specification |
|---|
| HTML> # dom-input-max> |