 |
Saturday, May 17, 2008 
<MAP> ... </MAP> Client-side Image Map
|
DEFINITION Information concerning the hot spots (clickable areas) in the image is defined in a client-side image map. Every selectable area should be mentioned in an AREA tag inside the <MAP> tag. A client-side image map is the same as a server-side image map. The only difference is where the hot spot definitions are stored: within the html document viewed in the client or in a map file on the server. |
SUGGESTED STYLE/USAGE Client-side image maps are not yet widely supported. Try to offer a textual alternative or also use a server-side image map: Put the <IMG> tag with the USEMAP attribute inside an <A> and add the ISMAP attribute. |
EXAMPLE <BODY> <MAP NAME="gifartmap"> <AREA SHAPE=RECT COORDS="23,54 118,118" HREF="../movies/gifart2.rm" > <AREA SHAPE=RECT COORDS="84,95 118,118" HREF="../movies/gifart.rm" > </MAP> </BODY> |
 |
 |