Obsolete since Gecko 23 (Firefox 23 / Thunderbird 23 / SeaMonkey 2.20)
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Gets/sets the status bar text for the given window.
var sMsg = window.defaultStatus; window.defaultStatus = sMsg;
sMsg
is a string containing the text to be displayed by default in the statusbar.<html> <body onload="window.defaultStatus='hello!';"/> <button onclick="window.confirm('Are you sure you want to quit?');">confirm</button> </body> </html>
To set the status once the window has been opened, use window.status.
HTML5
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/defaultStatus