August 1999
Intermediate to advanced
1488 pages
72h 53m
English
window.status = string
The status property of the Window object allows you to specify the message that is displayed in the status bar of the browser. Note that in JavaScript 1.1, this property was tainted. See Chapter 1 for more information on JavaScript security and data tainting.
Note
When setting the Window.status property, be sure that your function returns true. This also applies when setting the property within the body of an HTML tag.
Listing 7.585 shows how you can set the status in the Status Bar by rolling over a link.
<a href="http://www.purejavascript.com/book" onMouseOver="window.status='Please ... |
Read now
Unlock full access