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 theHTMLMediaElement.currentSrcproperty