Write text to the window's status bar : StatusBar « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- StatusBar
Write text to the window's status bar
<html>
<head>
<script type="text/javascript">
function load(){
window.status="status bar"
}
</script>
</head>
<body onload="load()">
</body>
</html>
Related examples in the same category