Skip to content

Instantly share code, notes, and snippets.

@freakingeek
Created March 22, 2022 09:12
Show Gist options
  • Select an option

  • Save freakingeek/fcc23446beff1fc22f702b3075cab3cc to your computer and use it in GitHub Desktop.

Select an option

Save freakingeek/fcc23446beff1fc22f702b3075cab3cc to your computer and use it in GitHub Desktop.
Send request to the server without headers
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'hidden') {
navigator.sendBeacon('/log', analyticsData);
}
});
// Source: https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment