Scrolling Status Bar
|
|
Source code for Scrolling Status Bar Message.
Scrolling Status Bar
Thanks to my Mentor and a very nice, extreamly smart, Teacher :o)--Dr. Horvathe
<!-- Put this part in the head section of your page! -->
<SCRIPT LANGUAGE=JAVASCRIPT><!--
var myMsg = " Welcome to My Super Duper Deluxe Web Site! ";
myMsg = myMsg + " Please stay as long as you like, sit back, and take off your shoes! ";
var i = 0;
function scrollMsg() {
frontPart = myMsg.substring(i,myMsg.length);
backPart = myMsg.substring(0,i);
window.status = frontPart + backPart;
if (i < myMsg.length)
{
i++;
}
else
{
i = 0;
}
setTimeout("scrollMsg()", 100);
}
//--></SCRIPT>
<!-- Put this part in the body section of your page -->
<BODY onLoad="scrollMsg()">
This document was last modified Monday, August 25, 2008