status
Summary
Sets the text in the status bar at the bottom of the browser or returns the previously set text.
Property of dom/Windowdom/Window
Syntax
var message = window.status;
window.status = value;
Return Value
Returns an object of type StringString
The text contents of the userAgents’ Status Bar
Examples
window.onload=function(){
window.status='loaded.....';
}
Notes
Remarks
Syntax
window.status = string; var value = window.status;
Attributions
Mozilla Developer Network : [status Article]