W3cubDocs

/DOM

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.keySystem
Is a DOMString describing the key system encrypting the stream.
HTMLSourceElement.media
Is a DOMString reflecting the media HTML attribute, containing the intended type of the media resource.
HTMLSourceElement.sizes
Is a DOMString representing image sizes between breakpoints
HTMLSourceElement.src
Is a DOMString reflecting the src HTML attribute, containing the URL for the media resource. The HTMLSourceElement.src property 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 src property is updated (along with any siblings), the parent HTMLMediaElement's load method should be called when done, since <source> elements are not re-scanned automatically.
HTMLSourceElement.srcset
Is a 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.
HTMLSourceElement.type
Is a DOMString reflecting the type HTML attribute, containing the type of the media resource.

Methods

No specific method; inherits methods from its parent, HTMLElement.

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support Yes Yes 3.5 9 Yes Yes
keySystem Yes Yes Yes
Disabled
Yes
Disabled
Disabled This feature is behind the media.eme.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
media Yes Yes 3.5 9 Yes Yes
sizes Yes Yes 38
38
33
Disabled
Disabled From version 33: this feature is behind the dom.image.picture.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
src Yes Yes 3.5 9 Yes Yes
srcset Yes Yes 38
38
33
Disabled
Disabled From version 33: this feature is behind the dom.image.picture.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
type Yes Yes 3.5 9 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 ?
keySystem Yes Yes Yes Yes
Disabled
Yes
Disabled
Disabled This feature is behind the media.eme.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
media Yes Yes Yes 4 Yes Yes ?
sizes Yes Yes Yes 38
38
33
Disabled
Disabled From version 33: this feature is behind the dom.image.picture.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
src Yes Yes Yes 4 Yes Yes ?
srcset Yes Yes Yes 38
38
33
Disabled
Disabled From version 33: this feature is behind the dom.image.picture.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
? ? ?
type Yes Yes Yes 4 Yes Yes ?

See also

© 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/HTMLSourceElement