- Jun 2, 2000
- 1,911
- 0
- 0
does IE5.5 have good support for client side image maps? I typed the following codes in and tested it in IE. everything seems to work except for the default value for the map: it wouldn't go to napster and the cursor remained an arrow instead of a pointing finger which indicates a link.
then I tested it in opera 5.01 and it works fine.
is this happening to anyone else in IE5.5?
----------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Client-side Imagemap Test</TITLE>
</HEAD>
<BODY>
<DIV ALIGN="center">
<IMG SRC="image_map.gif" WIDTH="400" HEIGHT="125" ALT="Image map" USEMAP="#shapes" BORDER="0">
</DIV>
<!-- Start of client-side image map -->
<MAP NAME="shapes">
<AREA SHAPE="RECT" COORDS="33,63,107,102" HREF="http://www.bolt.com" ALT="Bolt">
<AREA SHAPE="CIRCLE" COORDS="200,82,25" HREF="http://www.anandtech.com" ALT="Anandtech">
<AREA SHAPE="POLY" COORDS="307,54,337,54,352,82,338,110,305,110,292,83" HREF="http://www.hotmail.com" ALT="Hotmail">
<AREA SHAPE="default" HREF="http://www.napster.com" ALT="Napster">
</MAP>
<!-- End of client-side image map -->
</BODY>
</HTML>
then I tested it in opera 5.01 and it works fine.
is this happening to anyone else in IE5.5?
----------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Client-side Imagemap Test</TITLE>
</HEAD>
<BODY>
<DIV ALIGN="center">
<IMG SRC="image_map.gif" WIDTH="400" HEIGHT="125" ALT="Image map" USEMAP="#shapes" BORDER="0">
</DIV>
<!-- Start of client-side image map -->
<MAP NAME="shapes">
<AREA SHAPE="RECT" COORDS="33,63,107,102" HREF="http://www.bolt.com" ALT="Bolt">
<AREA SHAPE="CIRCLE" COORDS="200,82,25" HREF="http://www.anandtech.com" ALT="Anandtech">
<AREA SHAPE="POLY" COORDS="307,54,337,54,352,82,338,110,305,110,292,83" HREF="http://www.hotmail.com" ALT="Hotmail">
<AREA SHAPE="default" HREF="http://www.napster.com" ALT="Napster">
</MAP>
<!-- End of client-side image map -->
</BODY>
</HTML>
