Images maps can cause alot of interaction between the server and the client (your browser) causing delays during the processing of the information. In order to prevent any network traffic this lesson introduces a JavaScript event handler called "onMouseOver". The following code is used to send a message to the status bar of the browser.
<a href="nowhere.html" onMouseOver="window.status='A Link to Nowhere'; return true">sample link 1</a>
sample link 1
Notice when you move the mouse over the link, the status bar display the message "A Link to Nowhere". Usually the address of the link destination is shown in the status bar. Did you ever notice? Here the same link without the onMouseOver handler code.
<a href="nowhere.html">sample link 2</a>
sample link 2
Notice the status bar when you move the mouse over the link. We will use the onMouseOver status display capabilities to demonstrate how image maps work.