Horje

Example of HTML formnovalidate Attribute in Input

A form with two submit buttons (with and without validation):
index.html
Example: HTML
 <form action="/action_page.php">
  <label for="email">Enter your email:</label>
  <input type="email" id="email" name="email"><br><br>
  <input type="submit" value="Submit">
  <input type="submit" formnovalidate="formnovalidate"
  value="Submit without validation">
</form> 

Output should be:

Example of HTML formnovalidate Attribute in Input




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Input Attributes
Uploaded by:
Admin