HTMLMediaElement: currentSrc property - Web APIs | MDN

Value

A string containing the absolute URL of the chosen media source; this may be an empty string if networkState is EMPTY; otherwise, it will be one of the resources listed by the HTMLSourceElement contained within the media element, or the value of src if no <source> element is provided.

Examples

js

const obj = document.createElement("video");
console.log(obj.currentSrc); // ""

Specifications

Specification
HTML
# dom-media-currentsrc-dev

Browser compatibility

See also

  • HTMLMediaElement: Interface used to define the HTMLMediaElement.currentSrc property

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.