Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created January 16, 2019 11:05
Show Gist options
  • Save pablocattaneo/2313939b8bb3b7c36ffc896ba4974376 to your computer and use it in GitHub Desktop.
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 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