Skip to content

Instantly share code, notes, and snippets.

@HasStacey
Last active September 29, 2015 18:40
Show Gist options
  • Save HasStacey/cb5ca145abc4a16d5f99 to your computer and use it in GitHub Desktop.
Save HasStacey/cb5ca145abc4a16d5f99 to your computer and use it in GitHub Desktop.
Swap page titles on blur
// Swapping page titles on blur
var originalPageTitle = document.title;
window.addEventListener('blur', function(){
document.title = 'Don\'t forget to read this...';
});
window.addEventListener('focus', function(){
document.title = originalPageTitle;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment