THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Meter high Property

Meter Object Reference Meter Object

Example

Change the value of the high attribute in a gauge:

document.getElementById("myMeter").high = "60";
Try it yourself »

Definition and Usage

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

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


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The high property is supported in Firefox, Opera, Chrome, and Safari 6.


Syntax

Return the high property:

meterObject.high

Set the high property:

meterObject.high=number

Property Values

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

Technical Details

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

More Examples

Example

Return the value of the high attribute in a gauge:

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

The result of x will be:

95
Try it yourself »

Related Pages

HTML reference: HTML <meter> high attribute


Meter Object Reference Meter Object