Skip to content

Instantly share code, notes, and snippets.

@hoox
Last active September 25, 2015 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoox/c62c0c6125727b7546ec to your computer and use it in GitHub Desktop.
Save hoox/c62c0c6125727b7546ec to your computer and use it in GitHub Desktop.
"Visibility Change" Event Listener
document.addEventListener("visibilitychange", function() {
console.log(document.hidden);
});
window.addEventListener("focus", function() {
console.log("focus");
});
window.addEventListener("blur", function() {
console.log("blur");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment