Javascripts > Misc Javascripts > Scrolling Status Bar
Script Title: Scrolling Status Bar
Description: Puts a scrolling information bar on the bottom of IE. Does not work with Mozilla
Example: Available
Copy the following code into your <HEAD></HEAD> tags.<SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available online --> <!-- Begin function leapto(form) { var myindex=form.dest.selectedIndex window.location=(form.dest.options[myindex].value); } // End --> var b_speed=8; //defines banner speed var banner_id=10; var b_pause=0; //to pause the banner var b_pos=0; function stop() { if(!b_pause) { clearTimeout(banner_id); b_pause=1; } else { banner_main(); b_pause=0; } } function banner_main() { msg="Welcome to Java-Scripts.net" var k=(40/msg.length)+1; for(var j=0;j<=k;j++) msg+=" "+msg; window.status=msg.substring(b_pos,b_pos+120); if(b_pos++==msg.length){ b_pos=0; } banner_id=setTimeout("banner_main()",1000/b_speed); } banner_main() </SCRIPT>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email