Open In App

HTML | DOM Button formNoValidate Property

The Button formNoValidate property in HTML DOM is used to set or return whether the form data should be validated or not when submitting the form. This property is used to reflect the HTML formnovalidate attribute. 

Syntax: 



buttonObject.formNoValidate
buttonObject.formNoValidate = true|false

Property Values: 

Return Value: It returns a boolean value true if form data should not be validated otherwise it returns false. 



Example 1: This example illustrates the HTML DOM Button formNoValidate property. 




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM  Button formNoValidate Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Button formNoValidate Property
    </h2>
    <form action="#" method="get" target="_self">
        <button type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>
    Submit </button>
    </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 Button formnovalidate Property -->
    <script>
        function myGeeks() {
            var btn = document.getElementById("Geeks").formNoValidate;
            document.getElementById("GFG").innerHTML = btn;
        }
    </script>
</body>
</html>

Output:

 

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




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM  Button formNoValidate Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Button formNoValidate Property
    </h2>
    <form action="#" method="get" target="_self">
        <button type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>
    Submit </button>
    </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 set Button formnovalidate Property -->
    <script>
        function myGeeks() {
            var btn = document.getElementById("Geeks").formNoValidate
                     = "false";
 
            document.getElementById("GFG").innerHTML = btn;
        }
    </script>
</body>
</html>

Output:

 

Supported Browsers:


Article Tags :