The name
read-only property of the PermissionStatus
interface returns the name of a requested permission.
The name
read-only property of the PermissionStatus
interface returns the name of a requested permission.
A read-only value that is identical to the name
argument passed to navigator.permissions.query()
.
js
function stateChangeListener() { console.log(`${this.name} permission status changed to ${this.state}`); } function queryAndTrackPermission(permissionName) { navigator.permissions .query({ name: permissionName }) .then((permissionStatus) => { console.log( `${permissionName} permission state is ${permissionStatus.state}`, ); permissionStatus.onchange = stateChangeListener; }); } queryAndTrackPermission("geolocation"); queryAndTrackPermission("midi");
Specification |
---|
Permissions # dom-permissionstatus-name |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
name |
97 | 97 | 93 | No | 83 | 16 | No | 97 | 93 | 68 | 16 | 18.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PermissionStatus/name