HTML ismap Attribute

❮ HTML Attributes

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 />



Browser Support




Status




Applies to:

The ismap attribute can be used on the following element:

Element Attribute
<img> ismap






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.
❮ HTML Attributes