The app event of the Web Manifest API is fired when the browser has successfully installed a page as an application.installed
function handleInstall(ev) {
console.log('Thank you for installing our app!');
}
window.onappinstalled = handleInstall; The appinstalled event implements the Event interface — it has available the properties and methods defined on this interface.
| Specification | Status | Comment |
|---|---|---|
| Web App Manifest The definition of 'appinstalled' in that specification. | Working Draft | Initial definition. |
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | ? | 49 (49) [1] | ? | ? | ? |
| Feature | Android | Chrome | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | ? | ? | 49.0 (49) [1] | ? | ? | ? |
[1] This feature is behind a feature preference setting. In about:config, set dom.manifest.oninstall to true.
Window.onappinstalled
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/appinstalled