The HTML Attribute reference.

"ismap" - html Attribute

  • Server-side image maps may be interesting in cases where the image map is too complicated for a client-side image map.
  • It is only possible to define a server-side image map for the IMG and INPUT elements. In the case of IMG, the IMG must be inside an A element and the boolean attribute ismap ([CI]) must be set. In the case of INPUT, the INPUT must be of type "image".

Value(s): ismap

Attribute "ismap" example:
<html>
  <body>
    <form name="myform" action="#" target='_top' >
      <input type="image" name="Trophy"
             src="images/Trophy.png"/>
    </form>
    <a href="#" target='_top' >
      <img  src="images/Trophy.png" border="0"
            alt="The sun image" ismap="ismap" target='_blank' />
    </a>
  </body>
</html>
Used in the element(s):
Elements Description
img This element specifies an inline image to be drawn in the place.
input This element defines a form control for the user to enter input.Attribute, ismap, usage:
  • With this attribute you can submit the coordinates of a user click on an img to a server.

© 2010 by Finnesand Data. All rights reserved.
This site aims to provide FREE programming training and technics.
Finnesand Data as site owner gives no warranty for the correctness in the pages or source codes.
The risk of using this web-site pages or any program codes from this website is entirely at the individual user.