»
EnglishFrenchVietnamese

Print - Scrolling Message Across Title Bar - JavaScriptBank.com

Full version: jsB@nk » Status » Title » Scrolling Message Across Title Bar
URL: https://www.javascriptbank.com/scrolling-message-across-title-bar.html

Scrolling Message Across Title Bar © 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 » Scrolling Message Across Title Bar
URL: https://www.javascriptbank.com/scrolling-message-across-title-bar.html



JavaScript
<script language="Javascript"><!-- Another function by Ira --><!-- May be freely used and modified - email notification would be nice -->var tt = 0;var FMess = new Array("Hello.........................","World........................","From Ira.....................")function FTitle(){document.title = FMess[tt]tt = (tt < (FMess.length -1)) ? tt + 1 : 0;setTimeout('FTitle()',700);}FTitle();</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->