Skip to content

Instantly share code, notes, and snippets.

@lixingcong
Created October 24, 2016 07:34
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 lixingcong/857b48fefed90baab3f34ee511656993 to your computer and use it in GitHub Desktop.
Save lixingcong/857b48fefed90baab3f34ee511656993 to your computer and use it in GitHub Desktop.
change html tilte when switch over pages
var this_title=document.title;
document.addEventListener('visibilitychange', function() {
document.title = document.hidden ? this_title+":你看不到我~": this_title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment