Javascript examples for DOM HTML Element:Input Number
The stepDown() method decrements the value of the number field by a specified number.
Parameter | Description |
---|---|
number | Required. amount the value of the number field should decrease. Default is "1" |
No return value
The following code shows how to Decrement the value of a number field by 5:
<!DOCTYPE html> <html> <body> Number: <input type="number" id="myNumber"> <button onclick="myFunction()">Test</button> <script> function myFunction() {//ww w . ja v a2 s . c o m document.getElementById("myNumber").stepDown(5); } </script> </body> </html>