Header
From Biowiktionary
(Difference between revisions)
Line 2: | Line 2: | ||
msg = "Welcome To BIOWiktionary"; | msg = "Welcome To BIOWiktionary"; | ||
- | msg = "!" + msg;pos = 0; | + | msg = "! " + msg;pos = 0; |
function scrollMSG() { | function scrollMSG() { | ||
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); | document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); |
Revision as of 07:31, 17 April 2007
<script type="text/javascript"> msg = "Welcome To BIOWiktionary"; msg = "! " + msg;pos = 0; function scrollMSG() { document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++; if (pos > msg.length) pos = 0 window.setTimeout("scrollMSG()",200); } scrollMSG(); </script>