Created
December 6, 2014 19:47
-
-
Save croosen/ae6e046ed5b4c1940e10 to your computer and use it in GitHub Desktop.
Fancy "I Miss You" page title
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
// Fancy "I Miss You" page title | |
var missingYou = function() { | |
// Set blur/focus to check if browsertab is active | |
$(window).on('blur', function() { | |
document.title = "I miss you ♥"; | |
}).on('focus', function() { | |
document.title = "Welcome back!"; | |
}); | |
}; | |
missingYou(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment