Home

Published

- 1 min read

allow only positive integer in input type number

img of allow only positive integer in input type number

The solution for this is noted below

allow only positive integer in input type number

Solution

   <!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <input type="number" name="test_name" min="0" oninput="validity.valid||(value='');">
  </body>
</html>

Try other methods by searching on the site. That is if this doesn’t work