Posted 11 years ago · Author
Change "...Welcome to my page...", to change the text displayed.

Code
<script language="javascript">
var count = 0;
//IN THE NEXT LINE, ADJUST THE SPEED
var delay = 200;
//IN THE NEXT LINE, SET YOUR MESSAGE
var text = "...Welcome to my page...";
function title_scroll () {
document.title = text.substring (count, text.length) + text.substring (0, count)
if (count < text.length)
count ++;
else
count = 0;
setTimeout ("title_scroll()", delay);
}
title_scroll();
</script>