| |
Source Code
<html>
<head>
<title>Blinking Status Bar</title>
<script language="JavaScript">
<!--
var yourwords = "Thank you for visiting my site!";
var speed = 150;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash();",speed);
}
// -->
</script>
</head>
<body onload="flash();">
</body>
</html>
|