On this page ...
Changing the text in the Statusbar
In the lower part of your browser
window you will find the statusbar.
By using JavaScript, we can put a
custom text here.
We will use the object "Window"
and the property "Status" in Javascript.
|
 |
Examples
<script>
window.status="Welcome to my homepage !!!"
</script>
This little example should be placed between
</HEAD> and <BODY> tags of your HTML source.
|