Easy but effective
<script type=’text/javascript’>
var msg = “your big title goes here”;
msg = ” ….. ” + msg;pos = 0;
function scrollTitle() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
if (pos > msg.length) pos = 0
window.setTimeout(“scrollTitle()”,300);
}
scrollTitle();
</script>
Blog Post by: Mick Badran