Where is the Status Bar?
First of all, where is the status bar? It is located at the bottom left of your web browser. You should see the world MEOW! when you look at this page's status bar. The goal of this simple Java Script is to display a default message at that bar.
The Java Script Source
<!-- Insert the onLoad event handler into your BODY tag -->
<BODY onLoad="window.defaultStatus = 'MEOW!' ">
What to do with the Java Script Source Above
Open the your page with a simple text editor like notepad or a html editor. Find the <head> tag. Place the code onLoad="window.defaultStatus = 'MEOW!' " in the tag. You should get something like the tag above.
Just replace the word MOEW! with the words you want to be your default status bar message and you are done. Save the file and try it out.
email me if you have any problems at admin@narutofever.com
|