Javascript examples for Browser Object Model:Window status
The status property sets the text in the status bar, or returns the previously set text.
A String, representing the text displayed in the status bar
Set the text in the status bar:
<!DOCTYPE html> <html> <body> <script> window.status = "Some text in the status bar!!"; </script>/*from w w w. j a va 2 s. c o m*/ </body> </html>