Open In App

HTML | DOM Input Submit formNoValidate Property

Last Updated : 31 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input Submit formNoValidate Property in HTML DOM is used to set or return whether the form data should be validate or not when submitting the form. This Property is used to reflect the HTML formnovalidate attribute.

Syntax:

  • It returns formNoValidate property.
    submitObject.formNoValidate
  • It is used to set the formNoValidate property.
    submitObject.formNoValidate = true|false

Property Values:

  • true: It specifies that the form data should not be validated.
  • false: It is the default value. It specifies that the form data should be validated.

Return Value: It returns a Boolean value which represents whether the form data should be validated or not when submitting the form.

Example 1: This example illustrates that how to return Input Submit formNoValidate property.




<!DOCTYPE html> 
<html
  
<head
    <title
        HTML DOM Input Submit formNoValidate Property
    </title
</head
  
<body style="text-align:center;"
    <h1>
        GeeksForGeeks
    </h1>
      
    <h2
        HTML DOM Input Submit formNoValidate Property 
    </h2
      
    <form action="#" method="get" target="_self">
        <input type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>
    </form>
      
    <p>
        click on below button to return the Property
    </p>
      
    <button onclick = "myGeeks()"
        Click Here! 
    </button
      
    <p id = "GFG"style="font-size:25px;"></p
      
    <!-- Script to return submit formnovalidate Property -->
    <script
        function myGeeks() { 
            var btn = document.getElementById("Geeks").formNoValidate;
            document.getElementById("GFG").innerHTML = btn; 
        
    </script
</body
  
</html>                    


Output:
Before Clicking On Button:

After Clicking On Button:

Example 2: This example illustrates how to set Input Submit formNoValidate property.




<!DOCTYPE html> 
<html
  
<head
    <title
        HTML DOM Input Submit formNoValidate Property
    </title
</head
  
<body style="text-align:center;"
    <h1>
        GeeksForGeeks
    </h1>
      
    <h2
        HTML DOM Input Submit formNoValidate Property 
    </h2
      
    <form action="#" method="get" target="_self">
        <input type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>
    </form>
      
    <p>
        click on below button to set the Property
    </p>
      
    <button onclick = "myGeeks()"
        Click Here! 
    </button
      
    <p id = "GFG"style="font-size:25px;"></p
      
    <!-- Script to set submit formnovalidate Property -->
    <script
        function myGeeks() { 
            var btn = document.getElementById("Geeks").formNoValidate
                    = false;
                      
            document.getElementById("GFG").innerHTML = btn; 
        
    </script
</body
  
</html>                               


Output :
Before Clicking the Button:

After Clicking the Button:

Supported Browsers: The browser supported by DOM Input Submit formNoValidate Property are listed below:

  • Google Chrome
  • Internet Explorer 10.0
  • Firefox
  • Opera
  • Safari


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads