Horje

Example of HTML novalidate Attribute in Input

Specify that no form-data should be validated on submit:
index.html
Example: HTML
 <form action="/action_page.php" novalidate>
  <label for="email">Enter your email:</label>
  <input type="email" id="email" name="email"><br><br>
  <input type="submit" value="Submit">
</form> 

Output should be:

Example of HTML novalidate Attribute in Input




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