Skip to content

Instantly share code, notes, and snippets.

@croosen
Created December 6, 2014 19:47
Show Gist options
  • Save croosen/ae6e046ed5b4c1940e10 to your computer and use it in GitHub Desktop.
Save croosen/ae6e046ed5b4c1940e10 to your computer and use it in GitHub Desktop.
Fancy "I Miss You" page title
// 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