The HTMLImageElement interface provides special properties and methods for manipulating the layout and presentation of <img> elements.
Image()Image() constructor, taking two optional unsigned longs, which are the width and the height of the resource, creates an instance of HTMLImageElement , not inserted in a DOM tree.document.createElement("img").Inherits properties from its parent, HTMLElement.
HTMLImageElement.align
DOMString indicating the alignment of the image with respect to the surrounding context. The possible values are "left", "right", "justify", and "center".HTMLImageElement.altDOMString that reflects the alt HTML attribute, thus indicating fallback context for the image.HTMLImageElement.border
DOMString that is responsible for the width of the border surrounding the image. This is now deprecated and the CSS border property should be used instead.HTMLImageElement.complete Read only
Boolean that is true if the browser has finished fetching the image, whether successful or not. It also shows true, if the image has no src value.HTMLImageElement.crossOriginDOMString representing the CORS setting for this image element. See CORS settings attributes for further details.HTMLImageElement.currentSrc Read only
DOMString representing the URL to the currently displayed image (which may change, for example in response to media queries).HTMLImageElement.decodingDOMString representing a hint given to the browser on how it should decode the image.HTMLImageElement.heightunsigned long that reflects the height HTML attribute, indicating the rendered height of the image in CSS pixels.HTMLImageElement.hspace
long representing the space on either side of the image.HTMLImageElement.isMapBoolean that reflects the ismap HTML attribute, indicating that the image is part of a server-side image map.HTMLImageElement.longDesc
DOMString representing the URI of a long description of the image.HTMLImageElement.lowSrc
DOMString that refers to a low-quality (but faster to load) copy of the image.HTMLImageElement.name
DOMString representing the name of the element.HTMLImageElement.naturalHeight Read only
unsigned long representing the intrinsic height of the image in CSS pixels, if it is available; else, it shows 0.HTMLImageElement.naturalWidth Read only
unsigned long representing the intrinsic width of the image in CSS pixels, if it is available; otherwise, it will show 0.HTMLImageElement.referrerPolicy
DOMString that reflects the referrerpolicy HTML attribute indicating which referrer to use in order to fetch the image.HTMLImageElement.srcDOMString that reflects the src HTML attribute, containing the full URL of the image including base URI.HTMLImageElement.sizes
DOMString reflecting the sizes HTML attribute.HTMLImageElement.srcset
DOMString reflecting the srcset HTML 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.useMapDOMString that reflects the usemap HTML attribute, containing a partial URL of a map element.HTMLImageElement.vspace
long representing the space above and below the image.HTMLImageElement.widthunsigned long that reflects the width HTML attribute, indicating the rendered width of the image in CSS pixels.HTMLImageElement.x Read only
long representing the horizontal offset from the nearest layer. This property mimics an old Netscape 4 behavior.HTMLImageElement.y Read only
long representing the vertical offset from the nearest layer. This property is also similar to behavior of an old Netscape 4.Inherits properties from its parent, HTMLElement.
If an error occurs while trying to load or render the image, and an onerror event handler has been configured to handle the error event, that event handler will get called. This can happen in a number of situations, including:
src attribute is empty or null.src URL is the same as the URL of the page the user is currently on.<img> element's attributes.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);
| 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. |
| HTML Living Standard The definition of 'HTMLImageElement' in that specification. | Living Standard | The following properties have 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. | Obsolete | 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. | Obsolete | Initial definition. |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | Yes | Yes | 1 | Yes | Yes | Yes |
Image() constructor |
Yes | Yes | Yes | Yes | Yes | Yes |
complete |
Yes | Yes | Yes | 5
|
Yes | Yes |
crossorigin |
Yes | Yes | Yes | 9 | Yes | Yes |
currentSrc
|
Yes | Yes | 38
|
No | Yes | No |
decoding |
Yes | ? | 63 | No | Yes | No |
lowSrc |
Yes | Yes | Yes | ? | Yes | Yes |
naturalHeight |
Yes | Yes | Yes | 9 | Yes | Yes |
naturalWidth |
Yes | Yes | Yes | 9 | Yes | Yes |
onerror |
No | ? | 51
|
No | Yes | Yes |
referrerPolicy |
51 | No | 50 | No | 38 | 11.1 |
sizes
|
Yes | Yes | 38
|
No | Yes | No |
srcset
|
34 | Yes | 38
|
No | 21 | 8 |
x |
Yes | Yes | 14
|
No | Yes | Yes |
y |
Yes | Yes | 14
|
No | Yes | Yes |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | Yes | Yes | Yes | 4 | Yes | Yes | ? |
Image() constructor |
Yes | Yes | Yes | Yes | ? | Yes | ? |
complete |
Yes | Yes | Yes | Yes | ? | Yes | ? |
crossorigin |
Yes | Yes | Yes | Yes | ? | Yes | ? |
currentSrc
|
Yes | Yes | Yes | 38
|
No | No | ? |
decoding |
Yes | Yes | ? | 63 | ? | No | ? |
lowSrc |
Yes | Yes | Yes | ? | ? | ? | ? |
naturalHeight |
Yes | Yes | Yes | ? | ? | Yes | ? |
naturalWidth |
Yes | Yes | Yes | ? | ? | Yes | ? |
onerror |
No | No | ? | 51 | Yes | Yes | ? |
referrerPolicy |
51 | 51 | No | 50 | 38 | No | ? |
sizes
|
Yes | Yes | Yes | 38
|
No | No | ? |
srcset
|
37 | 34 | Yes | 38
|
No | 8 | ? |
x |
Yes | Yes | Yes | 14
|
Yes | Yes | ? |
y |
Yes | Yes | Yes | 14
|
Yes | Yes | ? |
<img>
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement