HTMLAreaElement Interface
The HTMLAreaElement Interface is a client-side image map area definition.
IDL Definition
Interface HTMLAreaElement : HTMLElement {
attribute DOMString accessKey;
attribute DOMString alt;
attribute DOMString coords;
attribute DOMString href;
attribute DOMString noHref;
attribute DOMString shape;
attribute long tabIndex;
attribute DOMString target;
};
Semantic Requirements
- The accessKey attribute is a single character access key to give access to the form control.
- The alt attribute alternates text for user agents not rendering the normal content of this element.
- The coords attribute is a comma-separated list of lengths, defining an active region geometry.
- The href attribute contains the URI of the linked resource.
- The noHref attribute specifies that this area is inactive (i.e. has no associated action).
- The shape attribute is the shape of the active area.
- The tabIndex attribute contains an index that represents the element's position in the tabbing order.
- The target attribute contains the frame to render the source in.
If you have comments or suggestions, email me at mbrady@nist.gov