The defaultStatus
property sets or gets the default text in the status bar.
The defaultStatus property is only supported in Opera.
defaultStatus |
Yes | Yes | Yes | Yes | Yes |
window.defaultStatus
The default text displayed in the status bar.
The following code shows how to set a default text in the status bar.
<!DOCTYPE html>
<html>
<body>
<script>
window.defaultStatus = "This is the default text in the status bar!!";
</script>
</body>
</html>