Created
January 16, 2019 11:05
-
-
Save pablocattaneo/2313939b8bb3b7c36ffc896ba4974376 to your computer and use it in GitHub Desktop.
How to remove browser form validations? #html
Source: https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Form_validation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This simple form uses the novalidate attribute to turn off the browser's automatic validation; --> | |
<form novalidate> | |
<p> | |
<label for="mail"> | |
<span>Please enter an email address:</span> | |
<input type="email" id="mail" name="mail"> | |
<span class="error" aria-live="polite"></span> | |
</label> | |
</p> | |
<button>Submit</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment