HTML | DOM Input Number min Property Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The DOM Input Number min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum value for a input number field. Syntax: It returns the min property.numberObject.minIt is use to set the min property.numberObject.min = number Property values: It contains a single value i.e number which specify the minimum value allowed to be entered by the user for a number field. Return Value: It returns a numeric value which represent the minimum number allowed for a number field. Example-1: This example illustrates how to return the Input number min Property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number min Property</h2> <form id="myGeeks"> <input type="number" id="myNumber" step="5" name="geeks" placeholder="multiples of 5" min="10"> </form> <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:23px;color:green;"></p> <script> function myFunction() { // Return Input number min Property var x = document.getElementById("myNumber").min; document.getElementById("demo").innerHTML = x; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Example-2: This example illustrates how to set the input number min Property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number min Property</h2> <form id="myGeeks"> <input type="number" id="myNumber" step="5" name="geeks" placeholder="multiples of 5" min="10"> </form> <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:23px;color:green;"></p> <script> function myFunction() { // Setting Input Number min Property var x = document.getElementById("myNumber").min = 15; document.getElementById("demo").innerHTML = "the value of the min attribute was changed to " + x; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Supported Browsers: The browser supported by DOM input number min Property are listed below: Google ChromeEdge 12 and aboveFirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML | DOM Input Number min Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Number max Property The DOM Input Number max Property in HTML DOM is used to set or return the value of the max attribute of a number field. The max attribute defines the maximum value for a number field. Syntax: It returns the max property. numberObject.maxIt is use to set the max property. numberObject.max = number P 2 min read HTML | DOM Input Number name Property The DOM Input Number name Property in HTML DOM is used to set or return the value of name attribute of a number field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It return 2 min read HTML DOM Input Number list Property The input number list property in HTML DOM returns a reference to the datalist element that contain an input number field. SyntaxnumberObject.list.idReturn ValueIt returns a string value that represents the value of the id attribute of the datalist element. Example: This code returns the input numbe 1 min read HTML | DOM Input Month min Property The DOM Input Month min property in HTML DOM is used to set or return the value of the min attribute of a Month field. The min attribute specifies the minimum value of Month and year for a Month field. Syntax: It returns the min property.monthObject.minIt is used to set the min property.monthObject. 2 min read HTML | DOM Input Number step Property The DOM Input Number step Property is used to set or return the value of the step attribute of a number field. The step attribute in HTML is used to set the discrete step size of the element. The default stepping value for number inputs is 1. The step attribute could be used with min and max attribu 2 min read HTML | DOM Input Number form Property The DOM Input Number form Property in HTML is used for returning the reference of the form containing the input number field. It is a read-only Property that returns a form object on success. Syntax: numberObject.form Return Values: It returns a string value which specify the reference of the form c 1 min read HTML | DOM Input Number type Property The DOM Input Number type Property in HTML DOM is used to return the type of form element of the number field. It always returns the "number" for an Input number field. Syntax: numberObject.type Return Values: It returns a string value which represents the type of form element of the Number field Th 1 min read HTML | DOM Input Number value Property The DOM Input Number value Property in HTML DOM is used to set or return the value of a value attribute of the number field. The value attribute specifies the initial value of the input number Field. It contains the default value or the user types. Syntax: It returns the value property.numberObject. 2 min read HTML | DOM Input Date min Property The Input Date min property is used for setting or returning the value of the min attribute of a date field. The attribute returns a string that represents the minimum date allowed. Syntax: For returning the min property:inputdateObject.minFor setting the min property:inputdateObject.min = YYYY-MM-D 2 min read HTML | DOM Input Time min Property The DOM Input Time min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum time for an input Time field. Syntax: It returns the min property.timeObject.minIt is use to set the min property.timeObject.min = hh:mm:ss.ms Property val 2 min read Like