THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Submit formNoValidate Property

Input Submit Object Reference Input Submit Object

Example

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

var x = document.getElementById("mySubmit").formNoValidate;

The result of x could be:

true // the form-data should not be validated when submitted
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

Internet Explorer Firefox Opera Google Chrome Safari

The formNoValidate property is supported in all major browsers.

Note: The formNoValidate property is not supported in Internet Explorer 9 and earlier versions, or in Safari.


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 Reference Input Submit Object