Input Time disabled Property

❮ Input Time Object

Example

Disable a time field:

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

Description

The disabled property sets or returns whether a time field should be disabled, or not.

A disabled element is unusable and un-clickable. Disabled elements are usually rendered in gray by default in browsers.

This property reflects the HTML disabled attribute.


Browser Support

Property
disabled Yes 10.0 Yes Yes Yes

Syntax

Return the disabled property:

timeObject.disabled

Set the disabled property:

timeObject.disabled = true|false

Property Values

Value Description
true|false Specifies whether a time field should be disabled, or not
  • true - The time field is disabled
  • false - Default. The time field is not disabled


Technical Details

Return Value: A Boolean, returns true if the time field is disabled, otherwise it returns false

More Examples

Example

Find out if a time field is disabled or not:

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

Example

Disable and undisable a time field:

function disableBtn() {
    document.getElementById("myTime").disabled = true;
}

function undisableBtn() {
    document.getElementById("myTime").disabled = false;
}
Try it Yourself »

Related Pages

HTML reference: HTML <input> disabled attribute


❮ Input Time Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.