Last Updated : 12 Aug, 2022
The HTML <input> formnovalidate Attribute is used to specify that the Input Element should not be validated when submitting the form. It is a Boolean attribute, this attribute can be used to override the novalidate attribute of the <form> element and it can only be used with the <input type="submit">.
Syntax:
<input formnovalidate="formnovalidate">
Example: This Example illustrate the use of <input> formnovalidate Attribute.
html
<!DOCTYPE html>
<html>
<head>
<title>
HTML Input formNoValidate Attribute
</title>
<style>
h1 {
color: green;
}
</style>
</head>
<body style="text-align:center;">
<h1>
GeeksforGeeks
</h1>
<h4>
HTML Input formNoValidate Attribute
</h4>
<form action="#" method="get" target="_self">
Username:
<input type="email" name="userid">
<input type="submit" id="Geeks" name="myGeeks"
value="Submit @ geeksforgeeks" formTarget="_blank"
formnovalidate>
</form>
</body>
</html>
Output:
Supported Browsers: The browsers supported by HTML <input> formnovalidate attribute are listed below:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4