| title | HTMLImageElement: src property |
|---|---|
| short-title | src |
| slug | Web/API/HTMLImageElement/src |
| page-type | web-api-instance-property |
| browser-compat | api.HTMLImageElement.src |
{{APIRef("HTML DOM")}}
The src property of the {{domxref("HTMLImageElement")}} interface specifies the image to display in the {{HTMLElement("img")}} element. It reflects the <img> element's src content attribute.
A string. For more information about the syntax of the src attribute, see the HTML <img> reference.
const img = new Image();
img.src = "example.png";
img.alt = "An example picture";{{Specifications}}
{{Compat}}
- {{domxref("HTMLImageElement.currentSrc")}}
- {{domxref("HTMLImageElement.srcset")}}
- {{domxref("HTMLImageElement.sizes")}}
