The visibilitychange event is fired at the document when the contents of its tab have become visible or have been hidden.
The event is not cancelable.
The visibilitychange event is fired at the document when the contents of its tab have become visible or have been hidden.
The event is not cancelable.
Use the event name in methods like addEventListener(), or set an event handler property.
js
addEventListener("visibilitychange", (event) => {}); onvisibilitychange = (event) => {};
A generic Event.
The event doesn't include the document's updated visibility status, but you can get that information from the document's visibilityState property.
This event fires with a visibilityState of hidden when a user navigates to a new page, switches tabs, closes the tab, minimizes or closes the browser, or, on mobile, switches from the browser to a different app. Transitioning to hidden is the last event that's reliably observable by the page, so developers should treat it as the likely end of the user's session (for example, for sending analytics data).
The transition to hidden is also a good point at which pages can stop making UI updates and stop any tasks that the user doesn't want to have running in the background.
This example begins playing a music track when the document becomes visible, and pauses the music when the document is no longer visible.
js
document.addEventListener("visibilitychange", () => { if (document.visibilityState === "visible") { backgroundMusic.play(); } else { backgroundMusic.pause(); } });
 This example treats the transition to hidden as the end of the user's session, and sends the appropriate analytics using the Navigator.sendBeacon() API: 
js
document.onvisibilitychange = () => { if (document.visibilityState === "hidden") { navigator.sendBeacon("/log", analyticsData); } };
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| visibilitychange_event | 62 33Theonvisibilitychangeevent handler property is not supported.13Theonvisibilitychangeevent handler property is not supported. | 18 12Theonvisibilitychangeevent handler property is not supported. | 56 | 10Theonvisibilitychangeevent handler property is not supported. | 49 20Theonvisibilitychangeevent handler property is not supported.15Theonvisibilitychangeevent handler property is not supported.12.1–15Theonvisibilitychangeevent handler property is not supported. | 14.1 14Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.10.1["Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.", "Before Safari 14, the event does not bubble, sodocument.addEventListener('visibilitychange', ...)works, butwindow.addEventListener('visibilitychange', ...)does not."]7["Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.", "Before Safari 14, the event does not bubble, sodocument.addEventListener('visibilitychange', ...)works, butwindow.addEventListener('visibilitychange', ...)does not.", "Theonvisibilitychangeevent handler property is not supported."] | 62 ≤37Theonvisibilitychangeevent handler property is not supported.4.4.3Theonvisibilitychangeevent handler property is not supported. | 62 33Theonvisibilitychangeevent handler property is not supported.18Theonvisibilitychangeevent handler property is not supported. | 56 | 46 20Theonvisibilitychangeevent handler property is not supported.14Theonvisibilitychangeevent handler property is not supported.12.1–14Theonvisibilitychangeevent handler property is not supported. | 14.5 14Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.10.3["Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.", "Before Safari 14, the event does not bubble, sodocument.addEventListener('visibilitychange', ...)works, butwindow.addEventListener('visibilitychange', ...)does not."]7["Doesn't fire thevisibilitychangeevent when navigating away from a document, so also include code to check for thepagehideevent (which does fire for that case in all current browsers). See WebKit bugs 116769, 151234, 151610, and 194897.", "Before Safari 14, the event does not bubble, sodocument.addEventListener('visibilitychange', ...)works, butwindow.addEventListener('visibilitychange', ...)does not.", "Theonvisibilitychangeevent handler property is not supported."] | 8.0 2.0Theonvisibilitychangeevent handler property is not supported.1.0Theonvisibilitychangeevent handler property is not supported. | 
Document.visibilityStatevisibilitychange, not beforeunload/unload.
    © 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/Document/visibilitychange_event