How to have the status line update when the mouse goes over a link?

Q

How to have the status line update when the mouse goes over a link?

✍: Guest

A

<a href="/javascript.shtml"
onmouseover="window.status='Hi There!';return true"
onmouseout="window.status='';return true">Look at the Status bar</a>

Look at the Status bar as your cursor goes over the link.

2011-03-01, 3409👍, 0💬