Skip to content

Instantly share code, notes, and snippets.

@vrcosta
Last active December 29, 2016 22:08
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 vrcosta/e1364abcad330b43007ac82dca42befc to your computer and use it in GitHub Desktop.
Save vrcosta/e1364abcad330b43007ac82dca42befc to your computer and use it in GitHub Desktop.
PageVisibility API
document.addEventListener('visibilitychange', function(e) {
document.title = "vascocosta.net | " + document.visibilityState;
if (document.visibilityState === "visible") {
startXHR();
} else {
stopXHR();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment