inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Jan 1, 2015 15:10:54 GMT -8
I ran across this nifty piece of j/s to place a scrolling message in your browser tab Pretty simple, place between <head> and </head> in the Forum wrapper or place in the Global header
Place Forum name and message in the red area and adjust speed in the blue <script type='text/javascript'>
//<![CDATA[
msg = "Your Forum Name - Wishes You A Happy New Year";
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>
|
|