The “novalidate” attribute belongs to the <form> element.
When included, “novalidate” indicates that all form-data should bypass validation upon submission.
Example
Indicate that validation of form-data should be disabled upon submission.
<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> |