">
|
|
||||||
|
|
|
This JavaScript code displays a scrolling message in the Status Bar at the bottom of your browser. It takes a second to load.... <script language="JavaScript" type="text/javascript">
<!--
var bsize=200;
var buffer="";
for (loop=1; loop < bsize; loop++) buffer+=" ";
var yourwords=" Your message here ..... "
var message = buffer+yourwords;
var message2 = "";
var message1=message;
var count = 0;
function scrollmessage()
{
message2=message1.substring(1,message1.length);
message2+=" ";
window.status=message2;
setTimeout("scrollmessage();",100);
count++;
message1=message2;
if (count==message.length)
{
message1=message;
count=0;
}
}
// -->
</script>
|
|
|
||
|
Copyright © 1995-2003 Sidetrips Internet Services, Inc. All rights reserved.
Reproduction in whole or in part in any form or medium without express written permission of Sidetrips Internet Services, Inc. is prohibited. sidetrips.com, hostserver.com, registera.com, htmlshop.com, and associated domains are trademarks of Sidetrips Internet Service, Inc. Privacy Policy | Acceptable Use Policy | Terms of Service |
||||||