Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(function () {
  2. var message = "Wracaj do nas! Tęsknimy:(";
  3. var original;
  4.  
  5. $(window).focus(function() {
  6. if(original) {
  7. document.title = original;
  8. }
  9. }).blur(function() {
  10. var title = $('title').text();
  11. if(title != message) {
  12. original = title;
  13. }
  14. document.title = message;
  15. //moveTitle();
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement