Skip to content

Instantly share code, notes, and snippets.

@tranch
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save tranch/9b4d0f61be79b3b62dd3 to your computer and use it in GitHub Desktop.

Select an option

Save tranch/9b4d0f61be79b3b62dd3 to your computer and use it in GitHub Desktop.
scrolling document title when it longer than browser tab width.
(function (doc) {
var origin_title = doc.title;
setInterval(function() {
doc.title = doc.title.length <= 15
? origin_title
: doc.title.slice(1, 1) + doc.title.slice(1, doc.title.length + 1);
}, 300);
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment