Skip to content

Instantly share code, notes, and snippets.

@ahmethakanbesel
Last active May 20, 2021 23:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmethakanbesel/16a3a4327bb6f7db4cdc994047db6ad9 to your computer and use it in GitHub Desktop.
Save ahmethakanbesel/16a3a4327bb6f7db4cdc994047db6ad9 to your computer and use it in GitHub Desktop.
Sekme değişince sayfa başlığını değiştirme (jQuery).
<script type="text/javascript">
var title = document.title;
var alttitle = "Buraya gelir misin lütfen";
window.onblur = function () { document.title = alttitle; };
window.onfocus = function () { document.title = title; };
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment