Status & Title Bar

You can show a message in the Status Bar or Title Bar.

Using window.status="message" for the status bar and document.title="message" for the title bar..

The following example shows how to put a message in the status bar when you pass the mouse over a link.

< a href="page.htm" onmouseover="window.status='YOUR MESSAGE HERE'"> Example link < /a>

Pass your mouse over the link below to see the message in the status bar

Example 1 You can also have a different message for when the mouse is removed from the link

< a href="sbar.htm" onmouseover="window.status='YOUR FIRST MESSAGE HERE'" onmouseout="window.status'YOUR SECOND MESSAGE HERE'"> Example Link < /a>

Example 2