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

Preventing validation on HTML5 text box


To avoid validation, use the formnovalidate attribute in HTML5. In the example, validation is disabled for the second button:

<!DOCTYPE html>
<html>
   <head>
      <title>HTML formnovalidate attribute</title>
   </head>
   <body>
      <form action = "new.php" method = "get">
         Rank <input type = "number" name = "rank"><br>
         <input type = "submit" value = "Submit"><br>
         <input type = "submit" formnovalidate = "formnovalidate" value = "Submit with no validation">
      </form>
   </body>
</html>