Forum Moderators: open
I wanted to put a short static message on the user's browser status bar, and I remember using the "window.status" method years ago. When I try it now, browsers seem to show/do nothing. I tried FF 2 and IE 7. Is this method "dead"?
Thanks.
Example:
<a href="index.html" onmouseover="window.status='My Message';return true">My Link</a>
(supposed to put message on status bar when mouse hovers over link)
You should consider using a tooltip or hovering text box to display the message instead, both are better than using the status bar anyway.