Skip to content

Instantly share code, notes, and snippets.

@marcandrewb
Created April 2, 2019 14:08
Show Gist options
  • Save marcandrewb/97165a554c2ee215f126742cc07d93b0 to your computer and use it in GitHub Desktop.
Save marcandrewb/97165a554c2ee215f126742cc07d93b0 to your computer and use it in GitHub Desktop.
fire an event when a user makes another tab or window active
document.addEventListener('visibilitychange', () => {
if (document.hidden) {
// the page has been hidden
} else {
// the page has become visible
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment