Scroll text in Status Bar
In this article I explain about how to show scrolling text in the status bar of the internet Explorer.
This will show scrolling text in the status bar of the internet Explorer.
<html>
<head>
<script language="JavaScript">
var msg="Computer Applied Technology "
var pos=0
var sp=" "
var len
function src()
{
len=msg.length
setInterval("f1()",250)
}
function f1()
{
window.status=msg.substring(pos,len)+sp+msg.substring(0,pos)
//+sp+msg.substring(len+30,pos)
pos=pos+1
if(pos==len)
pos=0
}
</script>
</head>
<body onload="src()">
</body>
</html>
You can use this code snippet for Scroll text in Status Bar