Meter low attribute
Definition and usage
low
Attribute setting or returning the value of low attribute value.
The low attribute defines the range of values considered to be low in the meter. This value must be greater than min attribute value, and less than high and max Attribute value.
See also:
HTML Reference Manual:HTML <meter> low Attribute
HTML Reference Manual:HTML <meter> Tag
Instance
Example 1
Change the value of the low attribute in the meter:
document.getElementById("myMeter").low = "60";
Example 2
Return the value of the low attribute in the meter:
var x = document.getElementById("myMeter").low;
Syntax
Return the low attribute:
meterObject.low
Set the low attribute:
meterObject.low = number
attribute value
value | description |
---|---|
number | Defined as a low-value floating-point number. |
Technical Details
Return Value: | A number, representing a floating-point number as the lower value. |
---|
Browser Support
The numbers in the table indicate the first browser version that fully supports this attribute.
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
Support | Not Supported | Support | 6.0 | Support |