HTML ismap Attribute
Example
<a href="action-ismap.html">
<img src="demo/image.jpg" alt="demo" width="500" height="600" ismap>
</a>
Meaning
The ismap is a boolean attribute specifies that the image is a server-side image map.
User mouse actions over the image are sent to the server for processing.
Standard Syntax
HTML: <img src="URL" alt="text" ismap>,
XHTML: <img src="URL" alt="text" ismap />
Applies to:
The ismap attribute can be used on the following element:
Advertisement
Attribute Values
| Value | Description |
|---|---|
| ismap | This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value. |