Open In App

HTML | <input> formnovalidate Attribute

Last Updated : 12 Aug, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

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

Next Article

Similar Reads