HTML DOM Meter low Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Meter low Property

❮ Meter Object

Example

Change the value of the low attribute in a gauge:

document.getElementById("myMeter").low = "60";
Try it Yourself »

Definition and Usage

The low property sets or returns the value of the low attribute in a gauge.

The low attribute specifies the range where the gauge's value is considered to be a low value. This value must be greater than the min attribute value, and less than the high and max attribute values.


Browser Support

Property
low Yes Not supported Yes 6.0 Yes

Syntax

Return the low property:

meterObject.low

Set the low property:

meterObject.low = number

Property Values

Value Description
number Specifies a floating point number that is considered to be a low value

Technical Details

Return Value: A Number, representing a floating point number that is considered to be a low value

More Examples

Example

Return the value of the low attribute in a gauge:

var x = document.getElementById("myMeter").low;
Try it Yourself »

Related Pages

HTML reference: HTML <meter> low attribute


❮ Meter Object