Skip to content

Instantly share code, notes, and snippets.

@unrealapex
Created January 26, 2022 08:42
Show Gist options
  • Select an option

  • Save unrealapex/67ebed84abcf6bcb88fa3c5eae4af9d8 to your computer and use it in GitHub Desktop.

Select an option

Save unrealapex/67ebed84abcf6bcb88fa3c5eae4af9d8 to your computer and use it in GitHub Desktop.
// taken from Stack Overflow: https://stackoverflow.com/a/63695199/14111707
document.addEventListener("visibilitychange", (event) => {
if (document.visibilityState == "visible") {
console.log("tab is active")
} else {
console.log("tab is inactive")
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment