The formnovalidate Attribute
The formnovalidate Attribute
//a form with two submit buttons (with and without validation)
<form action="/action_page.php">
E-mail: <input type="email" name="userid"><br>
<input type="submit" value="Submit"><br>
<input type="submit" formnovalidate value="Submit without validation">
</form>
Overrides the novalidate attribute of the <form> element.
Related concepts
→
The formnovalidate Attribute