Skip to content

Instantly share code, notes, and snippets.

@alivedise
Created December 13, 2012 06:47
Show Gist options
  • Select an option

  • Save alivedise/4274591 to your computer and use it in GitHub Desktop.

Select an option

Save alivedise/4274591 to your computer and use it in GitHub Desktop.
document.addEventListener('mozvisibilitychange', function onChange() {
if (document.mozHidden) {
console.log('[', document.URL ,'] HIDDEN=====');
} else {
console.log('[', document.URL ,'] SHOWN=====');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment