THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Range max Property

Input Range Object Reference Input Range Object

Example

Get the maximum value allowed for a slider control:

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

The result of x will be:

75
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

Internet Explorer Firefox Opera Google Chrome Safari

The max property is supported in all major browsers.

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


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 Reference Input Range Object