THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Range disabled Property

❮ Input Range Object

Example

Disable a slider control:

document.getElementById("myRange").disabled = true;

The result will be:

Try it Yourself »

Definition and Usage

The disabled property sets or returns whether a slider control 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:

rangeObject.disabled

Set the disabled property:

rangeObject.disabled = true|false

Property Values

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

Technical Details

Return Value: A Boolean, returns true if the slider control is disabled, otherwise it returns false

More Examples

Example

Find out if a slider control is disabled or not:

var x = document.getElementById("myRange").disabled;

The result of x will be:

true
Try it Yourself »

Example

Disable and undisable a slider control:

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

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

Related Pages

HTML reference: HTML <input> disabled attribute


❮ Input Range Object