Open In App

HTML | <button> formnovalidate Attribute

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

The HTML <button> formnovalidate Attribute is used to specify that the Form data should not be validated when submitting the Form. This Attribute is a Boolean Attribute. It overrides the feature of the form's novalidate Attribute. It can only be used with the <button type="submit">

Syntax: 

<button type="submit" formnovalidate>

Example: This Example illustrates the use of formnovalidate Attribute in <Button> Element. 

html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML Button formNoValidate Attribute
    </title>
</head>

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

    <h2> 
        HTML Button formNoValidate Attribute 
    </h2>

    <form action="#"
          method="get" 
          target="_self">
        Name:
        <input type="text">
        <br> Password:
        <input type="password">
        <br>
        <br>
        <button type="submit" 
                id="Geeks"
                name="myGeeks" 
                value="Submit @ geeksforgeeks" 
                formTarget="_blank"
                Formnovalidate>
            Submith without Validation
        </button>
        <br>
        <br>
        <button type="submit">
          Submit with validation
      </button>
    </form>

</body>

</html>

Output:

  

Supported Browsers: The browser supported by HTML Button formnovalidate attribute are listed below:

  • Google Chrome 
  • Edge 12
  • Internet Explorer
  • Firefox
  • Opera 
  • Safari

Next Article

Similar Reads