HTML DOM Input Range max Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Range max Property

❮ Input Range Object

Example

Get the maximum value allowed for a slider control:

var x = document.getElementById("myRange").max;
Try it Yourself »

Definition and Usage

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

The max attribute specifies the maximum value for a slider control.

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

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


Browser Support

Property
max Yes 10.0 Yes Yes Yes


Syntax

Return the max property:

rangeObject.max

Set the max property:

rangeObject.max = number

Property Values

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

Technical Details

Return Value: A String, representing the maximum value allowed

More Examples

Example

Change the maximum value:

document.getElementById("myRange").max = "90";
Try it Yourself »

Related Pages

HTML reference: HTML <input> max attribute


❮ Input Range Object