The formnovalidate Attribute Prevents Form Submissions

When present the formnovalidate attribute makes it so that a form isn't validated when the corresponding button / input is clicked.

by TJ VanToll

HTML

<form>
    <input type="text" required />
    <input type="submit" value="Validate" />
    <input type="submit" value="Do NOT Validate" formnovalidate />
</form>