Limited availability
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The charging
read-only property of the BatteryManager
interface is a Boolean value indicating whether or not the device's battery is currently being charged. When its value changes, the chargingchange
event is fired.
If the battery is charging or the user agent is unable to report the battery status information, this value is true
. Otherwise, it is false
.
A boolean.
Examples HTML<div id="charging">(charging state unknown)</div>
JavaScript
navigator.getBattery().then((battery) => {
const charging = battery.charging;
document.querySelector("#charging").textContent = charging;
});
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4