THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input DatetimeLocal required Property

Input DatetimeLocal Object Reference Input DatetimeLocal Object

Example

Find out if a local datetime field must be filled out before submitting a form:

var x = document.getElementById("myLocalDate").required;

The result of x will be:

true
Try it yourself »

Definition and Usage

The required property sets or returns whether a local datetime field must be filled out before submitting a form.

This property reflects the HTML required attribute.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The required property is supported in all major browsers, except Internet Explorer 9 and earlier versions, and Safari.

Note: The <input type="datetime-local"> element is not supported in Internet Explorer or Firefox.


Syntax

Return the required property:

datetimelocalObject.required

Set the required property:

datetimelocalObject.required=true|false

Property Values

Value Description
true|false Specifies whether a local datetime field should be a required part of form submission.
  • true - The local datetime field is a required part of form submission
  • false - Default. The local datetime field is not a required part of form submission

Technical Details

Return Value: A Boolean, returns true if the local datetime field is a required part of form submission, otherwise it returns false

More Examples

Example

Set a local datetime field to be a required part of form submission:

document.getElementById("myLocalDate").required = true;
Try it yourself »

Related Pages

HTML reference: HTML <input> required attribute


Input DatetimeLocal Object Reference Input DatetimeLocal Object