web api instance property
HTMLImageElement: src property
The src property of the HTMLImageElement interface specifies the image to display in the <img> element. It reflects the <img> element’s src content attribute.
Value
A string. For more information about the syntax of the src attribute, see the HTML <img> reference.
Examples
Setting the src attribute
const img = new Image();
img.src = "example.png";
img.alt = "An example picture";
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.