Status Line Messages with Image Maps

Illustration of an Image Map You Are On The Square You Are On The Circle You Are On The Polygon

 

<IMG SRC="images/imagemap.gif USEMAP="#map" ALT="Illustration of an Image Map">

<MAP NAME="map">
    <AREA
       SHAPE="rect"
       HREF="index.htm"
       COORDS="53,85,163,180"
       onMouseOver="window.status='You Are On The Rectangle'; return true;"
  
    onMouseOut="window.status=''"
       ALT="
You Are On The Square"
    >
    <AREA
       SHAPE="circle"
       HREF="index.htm"
       COORDS="272,133,41"
       onMouseOver="window.status='You Are On The Circle'; return true;"
    
  onMouseOut="window.status=''"
       ALT="
You Are On The Circle"
    >
    <AREA
       SHAPE="polygon"
       HREF="index.htm"
       COORDS="366,111,418,87,473,139,473,172,400,172"
       onMouseOver="window.status='You Are On The Polygon'; return true;"
    
  onMouseOut="window.status=''"
       ALT="
You Are On The Polygon"
    >
</MAP>

As you move the mouse over the Rectangle (COORDS="53,85,163,180") you will get a message in the Status Line. This will also be the case when you move the mouse over the Circle or the Polygon.

SideBar - Whenever possible you should include an ALT tag with your Images.