What is the HTML novalidate attribute?
Overview
The novalidate attribute in
Note: The
novalidateattribute is used with the<form>element.
Syntax
<form novalidate>
Example
The HTML code provided below demonstrates how to use the novalidate attribute:
Explanation
We make a form that takes an email address. When we press the “Submit” button, the form is submitted, but the data is not validated because we’ve used the novalidate attribute.