THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Range min Property

Input Range Object Reference Input Range Object

Example

Get the minimum value allowed for a slider control:

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

The result of x will be:

25
Try it Yourself »

Definition and Usage

The min property sets or returns the value of the min attribute of a slider control.

The min attribute specifies the minimum value for a slider control.

Tip: The min attribute is often used together with the max attribute to create a range of legal values.

Tip: To set or return the value of the max attribute, use the min property.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The min property is supported in all major browsers.

Note: The min property is not supported in Internet Explorer 9 and earlier versions.


Syntax

Return the min property:

rangeObject.min

Set the min property:

rangeObject.min=number

Property Values

Value Description
number Specifies the minimum value allowed for the slider control

Technical Details

Return Value: A String, representing the minimum value allowed

More Examples

Example

Change the minimum value:

document.getElementById("myRange").min = "50";
Try it Yourself »

Related Pages

HTML reference: HTML <input> min attribute


Input Range Object Reference Input Range Object