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:
- Google Chrome 4.0
- Edge 12.0
- Internet Explorer 10.0
- Firefox 4.0
- Opera 12.1
- Safari 5.0
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
12 Aug, 2022
Like Article
Save Article