YouTip LogoYouTip

Prop Meter Low

HTML DOM Meter low Property

HTML DOM Meter low Property

HTML DOM Meter low Property

-- Learning is not just about technology, but also about dreams!

JavaScript Reference Manual

Overview

JavaScript Objects

Browser Objects

DOM Objects

HTML Objects

HTML DOM Meta Object

HTML DOM Object Object

Explore Further

  • Computer Science
  • Software
  • Scripting Languages
  • Web Services
  • Development Tools
  • Scripting
  • Programming
  • Web Design and Development
  • Programming Languages
  • Web Service

Meter low Property

Meter Object Reference Manual Meter Object

Example

Change the value of the low attribute in a meter:

document.getElementById("myMeter").low="60";

Try it yourself Β»


Definition and Usage

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

The low attribute specifies the range that is considered to be a low value. The value must be greater than the min attribute value, and must be less than the high and max attribute values.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support the low property, except Internet Explorer.

Note: Safari 5 and earlier versions do not support the low property.


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 defines the low value range.

Technical Details

Return Value: A number, a floating-point number that defines the low value range.

More Examples

Example

Get the value of the low attribute of a meter:

var x = document.getElementById("myMeter").low;

The x output will be:

40

Try it yourself Β»


Related Articles

HTML Reference Manual: HTML <meter> low Attribute


Meter Object Reference Manual Meter Object

← Prop Meter MaxProp Meter High β†’