PermissionStatus: change event
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The change
event of the PermissionStatus
interface fires whenever the PermissionStatus.state
property changes.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener('change', event => { });
onchange = event => { };
Event type
A generic Event
.
Example
navigator.permissions.query({name:'geolocation'}).then(function(permissionStatus) {
console.log('geolocation permission state is ', permissionStatus.state);
permissionStatus.onchange = function() {
console.log('geolocation permission state has changed to ', this.state);
};
});
Specifications
No specification found
No specification data found for api.PermissionStatus.change_event
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
No compatibility data found for api.PermissionStatus.change_event
.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.