Skip to content

Instantly share code, notes, and snippets.

@mhmda-83
Created April 7, 2020 11:27
Show Gist options
  • Save mhmda-83/fe546bc3bd2849003f7d34dd03e68067 to your computer and use it in GitHub Desktop.
Save mhmda-83/fe546bc3bd2849003f7d34dd03e68067 to your computer and use it in GitHub Desktop.
check how much time user spend out of website
let timer = 0;
let interval;
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
alert(timer);
clearInterval(interval);
timer = 0;
} else {
interval = setInterval(() => timer++, 1000);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment