HTMLSourceElement
The HTMLSourceElement interface provides special properties (beyond the regular HTMLElement object interface it also has available to it by inheritance) for manipulating <source> elements.
Properties
Inherits properties from its parent, HTMLElement.
HTMLSourceElement.media-
Is a
DOMStringreflecting themediaHTML attribute, containing the intended type of the media resource. HTMLSourceElement.sizes-
Is a
DOMStringrepresenting image sizes between breakpoints HTMLSourceElement.src-
Is a
DOMStringreflecting thesrcHTML attribute, containing the URL for the media resource. TheHTMLSourceElement.srcproperty has a meaning only when the associated<source>element is nested in a media element that is a<video>or an<audio>element. It has no meaning and is ignored when it is nested in a<picture>element.Note: If the
srcproperty is updated (along with any siblings), the parentHTMLMediaElement'sloadmethod should be called when done, since<source>elements are not re-scanned automatically. HTMLSourceElement.srcset-
Is 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. HTMLSourceElement.type-
Is a
DOMStringreflecting thetypeHTML attribute, containing the type of the media resource.
Methods
No specific method; inherits methods from its parent, HTMLElement.
Specifications
| Specification |
|---|
| HTML Standard # htmlsourceelement |
Browser compatibility
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<source>. - The HTML DOM APIs of the elements that can contain a
<source>element:HTMLVideoElement,HTMLAudioElement,HTMLPictureElement.