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

Input Number max Property

❮ Input Number Object

Example

Get the maximum value allowed for a number field:

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

Definition and Usage

The max property sets or returns the value of the max attribute of a number field.

The max attribute specifies the maximum value for a number field.

Tip: Use the max attribute 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:

numberObject.max

Set the max property:

numberObject.max = number

Property Values

Value Description
number Specifies the maximum value allowed

Technical Details

Return Value: A String, representing the maximum numeric value allowed

More Examples

Example

Change the maximum value:

document.getElementById("myNumber").max = "10";
Try it Yourself »

Related Pages

HTML reference: HTML <input> max attribute


❮ Input Number Object