Working with Status Bar Messages : StatusBar « Window Browser « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Window Browser » StatusBar 
Working with Status Bar Messages

<html>
<head>
<title>Status Bar</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
     window.defaultStatus = "Welcome to the large URL page."
   
     function changeStatus() {
          window.status = "Click me to go to java2s.com."
     }
   
     function changeDefaultStatus() {
          window.defaultStatus = window.document.statusForm.messageList.
           options[window.document.statusForm.messageList.
           selectedIndex].text
     }
//-->
</SCRIPT>
</head>
   
<body>
<p>&#160;</p>
<p>&#160;</p><p align=center>
<font color="#008040">
<font size=7>
<strong>http://www.java2s.com</strong></font></font></p>
<p align=center>
<a href="http://www.java2s.com" onMouseOver="changeStatus();return true">Go...</a></p>
<form name="statusForm" method="POST">
<p><br>
<br>
<br>
<br>
</p>
<p align=center>
<font size=1>To change the default status bar message, select
a message from the list below and click the Change button. </font></p>
<p align=center><select
     name="messageList"
     size=1>
     <option selected>Welcome to the large URL page.</option>
     <option>A</option>
     <option>B</option>
     <option>C</option>
     </select>
<input
     type=button
     name="Change"
     value="Change"
     onClick="changeDefaultStatus()"></p>
</form>
</body>
</html>


           
       
Related examples in the same category
1. Date in the status bar
2. Displays the time in the status line
3. Write text to the window's status bar
4. Using the self Property in status bar
5. Setting the Default Status Message
6. Links with Custom Statusbar Messages
7. Handling Status Message Changes
8. JavaScript display infomation in Status Bar
9. Using Status Messages
10. Scrolling Text in the Status Window
11. The onFocus event Handler
12.  Creating a Scrolling Banner in status bar
w_w__w_.__j___a___v__a___2__s___.___c__om__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.