Skip to content

Instantly share code, notes, and snippets.

@Xavka
Last active November 25, 2019 20:27
Show Gist options
  • Save Xavka/44a60d33c9940db63911 to your computer and use it in GitHub Desktop.
Save Xavka/44a60d33c9940db63911 to your computer and use it in GitHub Desktop.
$(function() {
// Get page title
var pageTitle = $("title").text();
// Change page title on blur
$(window).blur(function() {
$("title").text("Don't forget to read this...");
});
// Change page title back on focus
$(window).focus(function() {
$("title").text(pageTitle);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment