Computer >> Computer tutorials >  >> Programming >> Javascript

HTML5 Input type “number” in Firefox


The min attribute of the input type number isn’t supported by Firefox, but it works correctly in Google Chrome.

Example

Let us see an example −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML input number</title>
   </head>
   <body>
      <form action = "" method = "get">
         Mention any number between 1 to 10
         <input type = "number" name = "num" min = "1" max = "10"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>