Skip to content

Instantly share code, notes, and snippets.

@Luciaisacomputer
Created April 29, 2015 03:44
Show Gist options
  • Save Luciaisacomputer/dbca1f99e3aab5e6dcf8 to your computer and use it in GitHub Desktop.
Save Luciaisacomputer/dbca1f99e3aab5e6dcf8 to your computer and use it in GitHub Desktop.
Change the pages title when not focused
function(){
var a=document.title;
window.onblur=function(){
document.title="Something Funny"
},
window.onfocus=function(){
document.title=a
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment