Open In App

HTML | <form> novalidate Attribute

Last Updated : 22 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <form> novalidate Attribute is used to specify that the form-data should not be validated when submitting the form. It is a Boolean attribute. 

Syntax: 

 <form novalidate> 

Example-1: This Example illustrates the use of novalidate Attribute in the form Element. 

html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML &lt;form&gt; novalidate Attribute
    </title>
</head>

<body style="text-align:center;">
    <h1> 
        GeeksForGeeks 
    </h1>

    <h2> 
        HTML &lt;form&gt; novalidate Attribute
    </h2>

    <form action="#"
          method="get"
          target="_self"
          novalidate>
        Name:
        <input type="text">
        <input type="submit" 
               id="Geeks" 
               name="myGeeks"
               value="Submit @ geeksforgeeks" 
               formTarget="_blank">
    </form>

</body>

</html>

Output:

  

Supported Browsers: The browser supported by HTML Form novalidate attribute are listed below:

  • Google Chrome 10.0 and above
  • Edge 12.0 and above
  • Internet Explorer 10.0 and above
  • Firefox 4.0 and above
  • Opera 15.0 and above
  • Safari 10.1 and above

Next Article

Similar Reads