|
HEAD Section:
<script language="JavaScript">
var msg = "Welcome
to the House Of Scripts!!!!";
var currChar = 0;
function TpMsg()
{
if (currChar <= msg.length)
{
window.status = msg.substring(0, currChar);
currChar++;
}
else
{
currChar = 0;
}
setTimeout("TpMsg()", 200); //200 is
the speed
}
TpMsg();
</script>
|