Edit This Code:
<!DOCTYPE html>
<html>
<body>

Quantity (between 1 and 5):
<input type="number" id="myNumber" min="1" max="5">

<p>Click the button to display the value of the min attribute of the number field.</p>

<button onclick="myFunction()">Try it</button>

<p><strong>Note:</strong> input elements with type="number" are not supported in IE 9 and earlier versions.</p>

<p id="demo"></p>

<script>
function myFunction() {
    var x = document.getElementById("myNumber").min;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy