Last active
September 29, 2015 18:40
-
-
Save HasStacey/cb5ca145abc4a16d5f99 to your computer and use it in GitHub Desktop.
Swap page titles on blur
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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