HTML DOM Input Time required Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Time required Property

❮ Input Time Object

Example

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

var x = document.getElementById("myTime").required;
Try it Yourself »

Definition and Usage

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

This property reflects the HTML required attribute.


Browser Support

Property
required Yes 10.0 Yes Yes Yes

Note: The <input type="time"> element does not show as any time field in Firefox.


Syntax

Return the required property:

timeObject.required

Set the required property:

timeObject.required = true|false

Property Values

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

Technical Details

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

More Examples

Example

Set a time field to be a required part of form submission:

document.getElementById("myTime").required = true;
Try it Yourself »

Related Pages

HTML reference: HTML <input> required attribute


❮ Input Time Object