This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2022.
* Some parts of this feature may have varying levels of support.
Note: This feature is available in Web Workers.
The PermissionStatus interface of the Permissions API provides the state of an object and an event handler for monitoring changes to said state.
PermissionStatus.name Read only
Returns the name of a requested permission, identical to the name passed to Permissions.query.
PermissionStatus.state Read only
Returns the state of a requested permission; one of 'granted', 'denied', or 'prompt'.
changeInvoked upon changes to PermissionStatus.state.
navigator.permissions
.query({ name: "geolocation" })
.then((permissionStatus) => {
console.log(`geolocation permission status is ${permissionStatus.state}`);
permissionStatus.onchange = () => {
console.log(
`geolocation permission status has changed to ${permissionStatus.state}`,
);
};
});
| Specification |
|---|
| Permissions> # permissionstatus-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 | |
PermissionStatus |
43 | 79 | 46 | 30 | 16 | 43 | 46 | 30 | 16 | 4.0 | No | 16 |
change_event |
43 | 79 | 46 | 30 | 16.4 | 43 | 46 | 30 | 16.4 | 4.0 | No | 16.4 |
name |
97 | 97 | 93 | 83 | 16 | 97 | 93 | 68 | 16 | 18.0 | No | 16 |
state |
4443–44 | 79 | 46 | 3130–31 | 16 | 4443–44 | 46 | 3230–32 | 16 | 4.0 | No | 16 |
© 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/PermissionStatus