Full version: jsB@nk » Status » Title » In-out scrolling message on title bar
URL: https://www.javascriptbank.com/in-out-scrolling-message-on-title-bar.html
Spice up that home page with eye-catching text that scrolls across your title bar.
Full version: jsB@nk » Status » Title » In-out scrolling message on title bar
URL: https://www.javascriptbank.com/in-out-scrolling-message-on-title-bar.html
<script language="javascript"><!--//Scrolling Message Across Title Bar//Email: [email protected] = "Scrolly Scrolly Scrolling Message!";//To change message edit above linmsg = "... ..." + msg;pos = 0;function scrollMSG() {document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);pos++;if (pos > msg.length) pos = 0window.setTimeout("scrollMSG()",200);}scrollMSG();--></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->