Open In App

HTML | <form> novalidate Attribute

Improve
Improve
Like Article
Like
Save
Share
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

Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads