HTML5 - number



It accepts only numerical value. The step attribute specifies the precision, defaulting to 1.

Example

<!DOCTYPE HTML>

<html>
   <body>

      <form action = "/cgi-bin/html5.cgi" method = "get">
         Select Number : <input type = "number" min = "0" max = "10" step "1"
            value = "5" name = "newinput" />
         <input type = "submit" value = "submit" />
      </form>

   </body>
</html>

Output

html5_web_forms2.htm
Advertisements