HTML DOM Input Submit formNoValidate Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Submit formNoValidate Property

❮ Input Submit Object

Example

Find out if the form-data should be validated or not:

var x = document.getElementById("mySubmit").formNoValidate;
Try it Yourself »

Definition and Usage

The formNoValidate property sets or returns whether the form-data should be validated or not, when submitted.

This property reflects the formnovalidate attribute.

When set to true, this property adds the "formnovalidate" attribute to the submit button, and specifies that the form-data should not be validated when submitted. This overrides the form's novalidate attribute.

Note: The formnovalidate attribute is new for the <input> element with type="submit" in HTML5.


Browser Support

Property
formNoValidate Yes 10.0 Yes Not supported Yes


Syntax

Return the formNoValidate property:

submitObject.formNoValidate

Set the formNoValidate property:

submitObject.formNoValidate = true|false

Property Values

Value Description
true|false Specifies whether the form-data should be validated or not (when submitted)
  • true - The form-data should not be validated
  • false - Default. The form-data should be validated

Technical Details

Return Value: A Boolean, returns true if the form-data should not be validated, otherwise it returns false

More Examples

Example

Set the formNoValidate property:

document.getElementById("mySubmit").formNoValidate = false;
Try it Yourself »

Related Pages

HTML reference: HTML <input> formnovalidate attribute


❮ Input Submit Object