HTMLInputElement: min 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.
Themin property of theHTMLInputElement interface reflects the<input> element'smin attribute, which generally defines the minimum valid value for a numeric or date-time input. If the attribute is not explicitly set, themin property is an empty string.
In this article
Value
A string representing the element'smin value or an empty string if nomin is explicitly set.
Example
js
const inputElement = document.querySelector("#range");console.log(inputElement.min); // the current value of the min attributeinputElement.min = 0; // sets the min value to "0"Specifications
| Specification |
|---|
| HTML> # dom-input-min> |