HTMLInputElement: max property - Web APIs | MDN
Value
A string representing the element's max value or an empty string if no max is explicitly set.
Example
js
const inputElement = document.querySelector("#time");
console.log(inputElement.max); // the current value of the max attribute
inputElement.max = "18:00:00"; // sets the max value to 6pm
Specifications
| Specification |
|---|
| HTML # dom-input-max |
Browser compatibility
See also
<input>of type range, number, date, month, week, and timeHTMLInputElement.minHTMLInputElement.valueHTMLInputElement.type