Skip to content

Instantly share code, notes, and snippets.

@karimabdul
Last active December 17, 2015 02:52
Show Gist options
  • Save karimabdul/51eaf9eac77d7feb9d7e to your computer and use it in GitHub Desktop.
Save karimabdul/51eaf9eac77d7feb9d7e to your computer and use it in GitHub Desktop.
Change page title
<html>
<head>
<title>What?</title>
<script>
window.onblur = function () {
document.title = 'What?';
}
window.onfocus = function () {
document.title = 'Yeah!';
}
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment