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

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.