Since March 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The WakeLockSentinel interface of the Screen Wake Lock API can be used to monitor the status of the platform screen wake lock, and manually release the lock when needed.
The screen wake lock prevents device screens from dimming or locking when an application needs to keep running.
A screen wake lock is requested using the navigator.wakeLock.request() method, which returns a Promise that fulfills with a WakeLockSentinel object if the lock is granted.
An acquired screen wake lock can be released manually via the release() method, or automatically via the platform screen wake lock. The latter may occur if the document becomes inactive or loses visibility, if the device is low on power, or if the user turns on a power save mode. A released WakeLockSentinel cannot be re-used: a new sentinel must be requested using navigator.wakeLock.request() if a new lock is needed. Releasing all WakeLockSentinel instances of a given wake lock type will cause the underlying platform wake lock to be released.
An event is fired at the WakeLockSentinel if the platform lock is released, allowing applications to configure their UI, and re-request the lock if needed.
Also inherits properties from its parent interface, EventTarget.
released Read only
Returns a boolean indicating whether the WakeLockSentinel has been released.
type Read only
Returns a string representation of the currently acquired WakeLockSentinel type. Return values are:
screen: A screen wake lock. Prevents devices from dimming or locking the screen.Also inherits methods from its parent interface, EventTarget.
release()Releases the WakeLockSentinel, returning a Promise that is resolved once the sentinel has been successfully released.
In this example, we create an asynchronous function that requests a WakeLockSentinel. Once the screen wake lock is acquired we listen for the release event, which can be used to give appropriate UI feedback. The sentinel can be acquired or released via appropriate interactions.
// create a reference for the wake lock
let wakeLock = null;
// create an async function to request a wake lock
const requestWakeLock = async () => {
try {
wakeLock = await navigator.wakeLock.request("screen");
// listen for our release event
wakeLock.addEventListener("release", () => {
// if wake lock is released alter the UI accordingly
});
} catch (err) {
// if wake lock request fails - usually system related, such as battery
}
};
wakeLockOnButton.addEventListener("click", () => {
requestWakeLock();
});
wakeLockOffButton.addEventListener("click", () => {
if (wakeLock !== null) {
wakeLock.release().then(() => {
wakeLock = null;
});
}
});
| Specification |
|---|
| Screen Wake Lock API> # the-wakelocksentinel-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
WakeLockSentinel |
84 | 84 | 126 | 70 | 16.4 | 84 | 126 | 60 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
14.0 | 84 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
release |
84 | 84 | 126 | 70 | 16.4 | 84 | 126 | 60 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
14.0 | 84 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
release_event |
84 | 84 | 126 | 70 | 16.4 | 84 | 126 | 60 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
14.0 | 84 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
released |
87 | 87 | 126 | 73 | 16.4 | 87 | 126 | 62 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
14.0 | 87 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
type |
84 | 84 | 126 | 70 | 16.4 | 84 | 126 | 60 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
14.0 | 84 | 18.416.4–18.4Does not work in standalone Home Screen Web Apps. See bug 254545. |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WakeLockSentinel