Full version: jsB@nk » Link » TitleTicker
URL: https://www.javascriptbank.com/titleticker.html
Translate the boring title bar of your browser-window into a great dynamic ticker that displays additional informations about the textlinks. Each textlink can have a message of its own. Fast. Small. True copy-and-paste.
Full version: jsB@nk » Link » TitleTicker
URL: https://www.javascriptbank.com/titleticker.html
<SCRIPT>// TitleTickerif (document.all) {var linkmessage=""var originaltitle=document.titlevar start=1var timer=true}function showmessage(thismessage) {if (document.all) {timer=truestart=1 linkmessage=thismessage scrolltitle() }}function hidemessage() {if (document.all) {timer=false document.title=originaltitle}}function scrolltitle() {if (timer) {var mes=linkmessage.substring(start, linkmessage.length-1) + linkmessage.substring(0, start)document.title=messtart++ if (start==linkmessage.length-1) {start=0} timer=setTimeout("scrolltitle()",120)}}</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<a href="http://www.anyurl.com" onMouseOver="showmessage('Put the message for this link between these brackets')" onMouseOut="hidemessage()">Mouse over this link and see title</a><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->