HTML DOM Meter low Property
HTML DOM Meter low Property
-- Learning is not just about technology, but also about dreams!
- Home
- HTML
- JavaScript
- CSS
- Vue
- React
- Python3
- Java
- C
- C++
- C#
- AI
- Go
- SQL
- Linux
- VS Code
- Bootstrap
- Git
- Local Bookmarks
JavaScript Reference Manual
JavaScript Objects
- JavaScript Array Object
- JavaScript Boolean Object
- JavaScript Date Object
- JavaScript Math Object
- JavaScript Number Object
- JavaScript String Object
- JavaScript RegExp Object
- JavaScript Global Properties/Functions
- JavaScript Operators
- JavaScript Error
Browser Objects
DOM Objects
- HTML DOM Document Object
- HTML DOM Element Object
- HTML DOM Attribute Object
- HTML DOM Event Object
- HTML DOM Console Object
- CSSStyleDeclaration Object
- DOM HTMLCollection
HTML Objects
- <a>
- <area>
- <audio>
- <base>
- <blockquote>
- <body>
- <button>
- <canvas>
- <col>
- <colgroup>
- <datalist>
- <del>
- <details>
- <dialog>
- <embed>
- <fieldset>
- <form>
- <iframe>
- <frameset >
- <img>
- <ins>
- <input> - button
- <input> - checkbox
- <input> - color
- <input> - date
- <input> - datetime
- <input> - datetime-local
- <input> - email
- <input> - file
- <input> - hidden
- <input> - image
- <input> - month
- <input> - number
- <input> - range
- <input> - password
- <input> - radio
- <input> - reset
- <input> - search
- <input> - submit
- <input> - text
- <input> - time
- <input> - url
- <input> - week
- <keygen>
- <link>
- <label>
- <legend>
- <li>
- <map>
- <menu>
- <menuItem>
- <meta>
- <meter>
- <object>
- <ol>
- <optgroup>
- <option>
- <param>
- <progress>
- <q>
- <script>
- <select>
- <source>
- <style>
- <table>
- <td>
- <th>
- <tr>
- <textarea>
- <title>
- <time>
- <track>
- <video>
Explore Further
- Computer Science
- Software
- Scripting Languages
- Web Services
- Development Tools
- Scripting
- Programming
- Web Design and Development
- Programming Languages
- Web Service
Meter low Property
Example
Change the value of the low attribute in a meter:
document.getElementById("myMeter").low="60";
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
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
Related Articles
HTML Reference Manual: HTML <meter> low Attribute
YouTip