Javascript examples for Browser Object Model:Window defaultStatus
The defaultStatus property sets or gets the default text in the status bar at the bottom of the browser.
The default text displayed in the status bar
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>/*from ww w. ja v a2 s .c o m*/ </body> </html>