Meter low Property
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
The low property is supported in Firefox, Opera, Chrome, and Safari 6.
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;
The result of x will be:
40
Try it Yourself »
Related Pages
HTML reference: HTML <meter> low attribute
Meter Object