The novalidate attribute is a <form> attribute. When present, novalidate specifies that form data should not be validated when submitted.
| HTML file: | Displayed by browser: |
|---|---|
|
<form action="http://www.w3schools.com/html/action_page.php" novalidate>
<br /> <br /> E-mail: <input type="email" name="user_email" > <br /> <br /> <input type="submit"> </form> |
Does not work in Safari browser.