Version compl�te: jsB@nk » Lien » TitleTicker
URL: https://www.javascriptbank.com/titleticker.html
Traduire l'ennuyeux barre de titre de la fenêtre de votre navigateur dans une grande dynamique ticker qui affiche des informations complémentaires sur les textlinks. Chaque textlink peut avoir un message qui lui est propre. Rapidement. Petit. Copie-coller.
Version compl�te: jsB@nk » Lien » 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-->