HTML | DOM Input Submit formNoValidate Property
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 string value which represents that the form data should be validated or not when the 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
Recommended Posts:
- HTML | DOM Input Image formNoValidate Property
- HTML | DOM Input Submit name Property
- HTML | DOM Input Submit value Property
- HTML | DOM Input Submit formAction Property
- HTML | DOM Input Submit formMethod Property
- HTML | DOM Input Submit form Property
- HTML | DOM Input Submit type Property
- HTML | DOM Input Submit defaultvalue Property
- HTML | DOM Input Submit formEnctype Property
- HTML | DOM Input Submit formTarget Property
- HTML | DOM Input Submit autofocus Property
- HTML | DOM Input Submit disabled Property
- HTML | <input> formnovalidate Attribute
- HTML | DOM Button formNoValidate Property
- HTML | <input type="submit">
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.