Input Range disabled Property
Example
Disable a slider control:
 document.getElementById("myRange").disabled = true;
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 
 | 
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;
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
 
 
