Skip to content

Instantly share code, notes, and snippets.

@heyalexej
Created August 1, 2015 17:52
Show Gist options
  • Save heyalexej/f2cc276af3e91dbd2de7 to your computer and use it in GitHub Desktop.
Save heyalexej/f2cc276af3e91dbd2de7 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function() {
var originalTitle = document.getElementsByTagName("title")[0].innerHTML;
jQuery(window).on("blur", function() {
timerId = setTimeout(function() {
document.getElementsByTagName("title")[0].innerHTML = "(1) " + originalTitle;
}
, 2000);
}
);
jQuery(window).on("focus", function() {
document.getElementsByTagName("title")[0].innerHTML = originalTitle;
}
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment