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>

Updated on: 04-Jun-2020

612 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements