The DefaultStatus property is used to set or return the default text in the status bar at the bottom side of the browser.
Syntax:
html
NOTE :
window.defaultStatusReturn Type: The Default text in status bar. Example:
<!DOCTYPE html>
<html>
<head>
<title>
HTML | DOM Window defaultStatus Properties
</title>
</head>
<body>
<p>This is first paragraph.</p>
<script>
window.defaultStatus =
"The default text of the status bar.";
</script>
</body>
</html>
- The output of this example can't be generated as this property is not supported by any browser.
- This property supports in Opera 12 and earlier version.
- This property supports in Firefox 23 and earlier version.