Skip to content

Instantly share code, notes, and snippets.

@maxxscho
Created December 11, 2014 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxxscho/bafa39621adf67531da6 to your computer and use it in GitHub Desktop.
Save maxxscho/bafa39621adf67531da6 to your computer and use it in GitHub Desktop.
Change browser tab name on blur
window.onblur = function () { document.title = 'you went?'; }
window.onfocus = function () { document.title = 'you came back'; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment