|
Statusbar List of Categories
- How do I set a default value for the status bar?
- How do I set the status bar value for hotlinks?
-
How do I set a default value for the status bar?
window.defaultStatus = "This is the status bar";
The above value would be displayed in the status bar anytime the cursor is not hovering over a link.
-
How do I set the status bar value for hotlinks?
You need to use the onmouserover event in your href tags.
onmouseover="self.status='This is a link'; return true;"
Note the nested quotes and that a true value must be returned. See our miscellaneous category for more information on how to avoid errors when nesting quotes.
|
|
|