Cronus
Cerberus Founder/Developer
- Jul 19, 2013
- 449
- 25
Hello,
I am not sure if this is posted here or not but here it is:
P.S: my Friend Cody made it:
I am not sure if this is posted here or not but here it is:
P.S: my Friend Cody made it:
Code:
<script type='text/javascript'>
// Scrolling Title Script made by CodyLeeK; [email protected] \\
msg = "Text";
msg = "More Text" + 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>