W3cubDocs

/Web APIs

Window: defaultStatus property

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

Note: This method was removed from Firefox 23 and onward.

Summary

Gets/sets the status bar text for the given window.

Value

A string containing the text to be displayed by default in the statusbar.

Examples

html

<html lang="en">
  <body onload="window.defaultStatus='hello!';"/>
  <button onclick="window.confirm('Are you sure you want to quit?');">confirm</button>
  </body>
</html>

Notes

To set the status once the window has been opened, use window.status.

Specifications

HTML5

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Window/defaultStatus