Hi, I added a new transient status bar message to my HTML document (specifically the 5 links listed in the table, see code below) and it worked fine in IE but when I viewed the document in Firefox or Chrome the message did not appear. All that I saw was the URL link. Can someone show me how I can get the transient status bar message to show in both Firefox and Chrome? Thank you!
Here is my code:
<table>
<tr><td colspan="5"><img src="logo.gif" alt="The Civil War Journal" /></td></tr>
<tr><td>
<a href="cwj.htm" class="Links"
onmouseover = "window.status='Go to the Home Page'; return true"
onmouseout = "window.status=''; return true">Home Page</a>
</td>
<td>
<a href="#" class="Links"
onmouseover = "window.status='View Current Events'; return true"
onmouseout = "window.status=''; return true">News</a>
</td>
<td>
<a href="#" class="Links"
onmouseover = "window.status='Go to Feature Articles'; return true"
onmouseout = "window.status=''; return true">Features</a>
</td>
<td>
<a href="#" class="Links"
onmouseover = "window.status='Go to the Civil War Form'; return true"
onmouseout ="window.status=''; return true">Forum</a>
</td>
<td>
<a href="form.htm" class="Links"
onmouseover = "window.status='Subscribe Today!'; return true"
onmouseout = "window.status=''; return true">Subscriptions</a>
</td></tr></table>