HTMLTrackElement: track property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The readonly track property of the HTMLTrackElement interface returns a TextTrack object corresponding to the text track of the <track> element.

Value

A TextTrack object.

Example

js
const trackElement = document.getElementById("exampleTrack");
console.dir(trackElement.track);

Specifications

Specification
HTML Standard
# dom-track-track-dev

Browser compatibility

BCD tables only load in the browser

See also