The When present, novalidate specifies that all of the form-data should not be validated when submitted. |
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>
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<h1>The form novalidate attribute</h1>
<p>The novalidate attribute specifies that the form data should not be validated when submitted.</p>
<form action="/action_page.php" novalidate>
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email" required><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Reffered: https://www.w3schools.com/html/html_form_attributes_form.asp
Example of HTML novalidate Attribute in Input | HTML Input Attributes |
Full Example of HTML novalidate Attribute in Input | HTML Input Attributes |
Read Full: | HTML Input Attributes |
Category: | Web Tutorial |
Sub Category: | HTML Input Attributes |
Uploaded: | 10 months ago |
Uploaded by: | Admin |
Views: | 26 |