»
EnglishFrenchVietnamese

Print - In-out scrolling message on title bar - JavaScriptBank.com

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

In-out scrolling message on title bar © JavaScriptBank.comSpice 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



JavaScript
<script language="javascript"><!--//Scrolling Message Across Title Bar//Email: senor_santi@yahoo.commsg = "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-->