The status
property sets or gets the text in the status bar at the bottom of the browser.
status |
No | No | No | No | Yes |
window.status
The text displayed in the status bar.
The following code shows how to Set the text in the status bar.
<!DOCTYPE html>
<html>
<body>
<script>
window.status = "Some text in the status bar!!";
</script>
</body>
</html>