next up previous
Next: Writing to a Different Up: JavaScript Examples Previous: Messages and Confirmations

The Status Bar

To write to the status do:

<html>
<head>
<script language="javascript">
<!--
function Init(){
self.status = "Some Message";
}
//-->
</script>
</head>
<body onLoad="Init()">
<h1>And the Status Bar Says...</h1>
</body>
</html>



Dave Marshall
9/28/2001