»
EnglishFrenchVietnamese

Print - Scroller Title script - JavaScriptBank.com

Full version: jsB@nk » Status » Title » Scroller Title script
URL: https://www.javascriptbank.com/scroller-title-script.html

Scroller Title script © JavaScriptBank.comScroll your document's title into view (in IE4+ and NS6). Useful, for example, to display long titles. You can configure the scrolling to run just once, or perpetually.

Full version: jsB@nk » Status » Title » Scroller Title script
URL: https://www.javascriptbank.com/scroller-title-script.html



JavaScript
<script> var repeat=1 var title=document.title var leng=title.length var start=1 function titlemove() {   titl=title.substring(start, leng) + title.substring(0, start)   document.title=titl   start++   if (start==leng+1) {     start=0     if (repeat==0)     return   }   setTimeout("titlemove()",140) } if (document.title) titlemove() </script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->