revision:
When present, it specifies that the image is part of a server-side image map (an image map is an image with clickable areas). When clicking on a server-side image map, the click coordinates are sent to the server as a URL query string. The coordinates sent to the server are relative to the top-left corner of the image. The coordinates are appended to the end of the URL in the following form: URL?x,y, where x and y are the coordinates of the click.
Note: the ismap attribute is allowed only if the <img> element is a descendant of an <a> element with a valid "href" attribute.
<img ismap>
This attribute has no values. Specifying the ismap attribute with an arbitrary value has the same effect as specifying it with no value.
For example, all of the following declarations have the same effect: ismap, ismap="true", ismap="false", ismap="on", ismap="ismap".
Although Boolean attributes may be used with no value in HTML, for XHTML compatibility, always use the ismap attribute in the following format: ismap="ismap".
<a href="action_page.php"> <img src="../../pics/cartoon.jpg" alt="my website" width="150" height="132" ismap> </a> <p class="spec">Click the image, and the click coordinates will be sent to the server as a URL query string.</p>
Move the mouse over the image, and watch the statusbar.
Click on the image, and watch the location bar.
<a href="#"> <img src="../../pics/cartoon.jpg" alt="cartoon" width=300" height="150" ismap> </a> <p class="spec">Move the mouse over the image, and watch the statusbar.</p> <p class="spec">Click on the image, and watch the location bar.</p>