Moving Title in javascript
This javascript code will show a moving title for the webpage
<SCRIPT language=javascript>
msg = “T h i s w i l l b e y o u r t i t l e”;
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>
