The HTMLImageElement interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of <img> elements.
Properties
Inherits properties from its parent, HTMLElement.
HTMLImageElement.align- Is a
DOMStringindicating the alignment of the image with respect to the surrounding context. HTMLImageElement.alt- Is a
DOMStringthat reflects thealtHTML attribute, indicating fallback context for the image. HTMLImageElement.border- Is a
DOMStringthat gives the width of the border around the image. This is now deprecated and the CSSborderproperty should be used instead. HTMLImageElement.completeRead only- Returns a
Booleanthat istrueif the browser has fetched the image, and it is in a supported image type that was decoded without errors. HTMLImageElement.crossOrigin- Is a
DOMStringrepresenting the CORS setting for this image element. See CORS settings attributes for details. HTMLImageElement.currentSrcRead only- Returns a
DOMString HTMLImageElement.height- Is a
unsigned longthat reflects theheightHTML attribute, indicating the rendered height of the image in CSS pixels. HTMLImageElement.hspace- Is a
longrepresenting the space to the left and right of the image. HTMLImageElement.isMap- Is a
Booleanthat reflects theismapHTML attribute, indicating that the image is part of a server-side image map. HTMLImageElement.longDesc- Is a
DOMStringrepresenting the URI of a long description of the image. HTMLImageElement.lowSrc- Is a
DOMStringrepresenting a reference to a low-quality (but faster to load) copy of the image. HTMLImageElement.name- Is a
DOMString HTMLImageElement.naturalHeightRead only- Returns an
unsigned longrepresenting the intrinsic height of the image in CSS pixels, if it is available; otherwise,0. HTMLImageElement.naturalWidthRead only- Returns an
unsigned longrepresenting the intrinsic width of the image in CSS pixels, if it is available; otherwise,0. HTMLImageElement.src- Is a
DOMStringthat reflects thesrcHTML attribute, containing the full URL of the image including base URI. HTMLImageElement.sizes- Is a
DOMString HTMLImageElement.srcset- IIs a
DOMStringreflecting thesrcsetHTML attribute, containing a list of candidate images, separated by a comma (',', U+002C COMMA). A candidate image is a URL followed by a'w'with the width of the images, or an'x'followed by the pixel density. HTMLImageElement.useMap- Is a
DOMStringthat reflects theusemapHTML attribute, containing a partial URL of a map element. HTMLImageElement.vspace- Is a
longrepresenting the space above and below the image. HTMLImageElement.width- Is an
unsigned longthat reflects thewidthHTML attribute, indicating the rendered width of the image in CSS pixels. HTMLImageElement.xRead only- Returns a
longrepresenting the horizontal offset from the nearest layer. This property mimics an old Netscape 4 behavior. HTMLImageElement.yRead only- Returns a
longrepresenting the vertical offset from the nearest layer. This property mimics an old Netscape 4 behavior.
Methods
Inherits properties from its parent, HTMLElement.
Image()- The
Image()constructor, taking two optionalunsignedlong, the width and the height of the resource, creates an instance ofHTMLImageElementnot inserted in a DOM tree.
Example
var img1 = new Image(); // HTML5 Constructor
img1.src = 'image1.png';
img1.alt = 'alt';
document.body.appendChild(img1);
var img2 = document.createElement('img'); // use DOM HTMLImageElement
img2.src = 'image2.jpg';
img2.alt = 'alt text';
document.body.appendChild(img2);
// using first image in the document
alert(document.images[0].src);
Specifications
| Specification | Status | Comment |
|---|---|---|
| CSS Object Model (CSSOM) View Module The definition of 'Extensions to HTMLImageElement' in that specification. |
Working Draft | Added the x and y properties. |
| WHATWG HTML Living Standard The definition of 'HTMLImageElement' in that specification. |
Living Standard | The following properties has been added: srcset, currentSrc and sizes. |
| HTML5 The definition of 'HTMLImageElement' in that specification. |
Recommendation | A constructor (with 2 optional parameters) has been added. The following properties are now obsolete: name, border, align, hspace, vspace, and longdesc.The following properties are now unsigned long, instead of long: height, and width.The following properties have been added: crossorigin, naturalWidth, naturalHeight, and complete. |
| Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLImgElement' in that specification. |
Recommendation | The lowSrc property has been removed.The following properties are now long, instead of DOMString: height, width, hspace, and vspace. |
| Document Object Model (DOM) Level 1 Specification The definition of 'HTMLImgElement' in that specification. |
Recommendation | Initial definition. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
lowSrc |
(Yes) | (Yes) | ? | (Yes) | (Yes) |
naturalWidth, naturalHeight |
(Yes) | (Yes) | 9 | (Yes) | (Yes) |
crossorigin |
(Yes) | (Yes) | ? | (Yes) | (Yes) |
complete |
(Yes) | (Yes) | 5 | (Yes) | (Yes) |
srcset |
34 | 32 (32) behind the dom.image.srcset.enabled pref, default to pref off. |
Not supported | 21 | 7.1 |
currentSrc |
(Yes) | 32 (32) behind the dom.image.srcset.enabled pref, default to pref off. |
Not supported | (Yes) | Not supported |
sizes |
(Yes) | 33 (33) behind the dom.image.picture.enabled pref, default to pref off. |
Not supported | (Yes) | Not supported |
x and y |
(Yes) | 14 [1] | Not supported | (Yes) | (Yes) |
| Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
lowSrc |
? | ? | ? | ? | ? |
naturalWidth, naturalHeight |
? | ? | 9 | ? | (Yes) |
crossorigin |
? | (Yes) | ? | ? | (Yes) |
complete |
? | (Yes) | ? | ? | (Yes) |
srcset |
Not supported | 32.0 (32) behind the dom.image.srcset.enabled pref, default to pref off. |
Not supported | Not supported | iOS 8 |
currentSrc |
Not supported | 32.0 (32) behind the dom.image.srcset.enabled pref, default to pref off. |
Not supported | Not supported | Not supported |
sizes |
Not supported | 33.0 (33) behind the dom.image.picture.enabled pref, default to pref off. |
Not supported | Not supported | Not supported |
x and y |
(Yes) | 14 [1] | Not supported | (Yes) | (Yes) |
[1] The x and y properties were removed in Gecko 7.0 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4) but restored in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11) for compatibility reasons.
See also
- The HTML element implementing this interface:
<img>