Javascripts > Javascript Windows > Scrolling Status Bar Script
Script Title: Scrolling Status Bar Script
Description: Have your own message scroll across the status bar.
Example: Available
Copy the following code between the <BODY></BODY> tags of your html page.<script language="Javascript"> <!-- //This credit line must stay intact //Status Scrolling script //For this script, visit java-scripts.net myMsg = "I hope you enjoy visiting Java-scripts.net! " 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()",50) } window.onload=scrollMsg //--> </script>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email