HTML | DOM Input Number step Property Last Updated : 30 Aug, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 attribute for creating a legal value.Syntax: It returns the step property. numberObject.stepIt is used to set the step property. numberObject.step = number Property Values: It contains a value i.e number Which specify the legal number interval for the number field. It has a default value which is 1.Return Value: It returns a numeric value which represents the legal number interval for the number field.Example-1: This example illustrates how to return the Property. html <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number step Property</h2> <input type="number" id="myNumber" step="5" placeholder="multiples of 5" > <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:23px;color:green;"></p> <script> function myFunction() { // Accessing input value var x = document.getElementById("myNumber").step; document.getElementById("demo").innerHTML = x; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button : Example-2 : This example illustrates how to set the property. html <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Number step Property</h2> <input type="number" id="myNumber" step="5" placeholder="multiples of 5" > <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:23px;color:green;"></p> <script> function myFunction() { // Accessing input value var x = document.getElementById("myNumber").step = "3"; document.getElementById("demo").innerHTML = "The value of the step attribute was changed to " + x; } </script> </body> </html> Output : Before Clicking On Button : After Clicking On Button: Supported Browsers: The browser supported by DOM input number step Property are listed below: Google ChromeEdge 12FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML | DOM Input Number step Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads 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 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 min Property 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 2 min read HTML | DOM Input Month step Property The DOM Input Month step Property is used to set or return the value of the step attribute of a month field. The step attribute in HTML is used to set the discrete step size of the element. The default stepping value for month inputs is 1. The step attribute could be used with min and max attribute 2 min read Like