Novalidate Attribute
<input novalidate ='novalidate'>
Explanation
Novalidate Attribute is used to make particular input field invalidate (not validated),
when user submits the form.
Example Code:
Result :
- It is not necessary to vaidate certain fields like "Name, blood group", so this attribute
can be used to invalidate those fields.
- It is a "Boolean Attribute".
- It is added with the <input>.
Limitations:
Except
Internet Explorer and Safari, it will function in all major browsers.