Skip to content

Instantly share code, notes, and snippets.

@codebubb
Created October 28, 2020 09:15
Show Gist options
  • Select an option

  • Save codebubb/b8bde70a9aa8be792973dedd436b9193 to your computer and use it in GitHub Desktop.

Select an option

Save codebubb/b8bde70a9aa8be792973dedd436b9193 to your computer and use it in GitHub Desktop.
Beacon and PageVisibility API
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'hidden') {
window.navigator.sendBeacon('/log', 'session ended');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment