Back to Content

HTMLTrackElement: default property

files/en-us/web/api/htmltrackelement/default/index.md

latest761 B
Original Source

{{ApiRef("HTML DOM")}}

The default property of the {{domxref("HTMLTrackElement")}} interface represents whether the track will be enabled if the user's preferences do not indicate that another track would be more appropriate. It reflects the {{htmlelement("track")}} element's boolean default attribute, returning true if present and false otherwise.

Value

A Boolean.

Example

js
const trackElement = document.getElementById("exampleTrack");
console.log(trackElement.default);
trackElement.default = true;

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("HTMLTrackElement.kind")}}
  • {{domxref("HTMLTrackElement.label")}}