Moving status bar
Here is javascript code for your blog. See example on my blog & picture below. Copy & paste the code to your HTML/JAVASCRIPT gadget
< language="javascript">
msg = "Krishna edyatoula is the best programmer in the world";
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>
Notes: Edit the RED with this tag <>
0 comments