Open In App

HTML | <input> formnovalidate Attribute

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




<!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:

Article Tags :