The TextTrackList interface is used to represent a list of the
tracks defined by the web.<track>
element, with each track
by a separate web.textTrack
object in the list.
The TextTrackList interface is used to represent a list of the tracks defined by the `web.<track>` element, with each track by a separate `web.textTrack` object in the list.
(get-track-by-id this id)
Method.
The web.TextTrackList
method getTrackById() returns the first
object from the track list whose id matches the specified string.
var theTrack = TextTrackList.getTrackById(id);
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/getTrackById
Method. The `web.TextTrackList` method getTrackById() returns the first object from the track list whose id matches the specified string. `var theTrack = TextTrackList.getTrackById(id);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/getTrackById`
(length this)
Property.
The read-only web.TextTrackList
property length returns the
of entries in the TextTrackList, each of which is a web.TextTrack
one track in the media element.
var trackCount = TextTrackList.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/length
Property. The read-only `web.TextTrackList` property length returns the of entries in the TextTrackList, each of which is a `web.TextTrack` one track in the media element. `var trackCount = TextTrackList.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/length`
(onaddtrack this)
Property.
The web.TextTrackList
property onaddtrack is an event handler
is called when the addtrack event occurs, indicating that a new
track has been added to the media element whose text tracks the
represents.
TextTrackList.onaddtrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onaddtrack
Property. The `web.TextTrackList` property onaddtrack is an event handler is called when the addtrack event occurs, indicating that a new track has been added to the media element whose text tracks the represents. `TextTrackList.onaddtrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onaddtrack`
(onchange this)
Property.
The web.TextTrackList
property onchange is an event handler
is called when the change event occurs, indicating that a change
occurred on a web.TextTrack
in the VideoTrackList.
TextTrackList.onchange = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onchange
Property. The `web.TextTrackList` property onchange is an event handler is called when the change event occurs, indicating that a change occurred on a `web.TextTrack` in the VideoTrackList. `TextTrackList.onchange = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onchange`
(onremovetrack this)
Property.
The web.TextTrackList
onremovetrack event handler is called
the removetrack event occurs, indicating that a text track has
removed from the media element, and therefore also from the TextTrackList.
TextTrackList.onremovetrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onremovetrack
Property. The `web.TextTrackList` onremovetrack event handler is called the removetrack event occurs, indicating that a text track has removed from the media element, and therefore also from the TextTrackList. `TextTrackList.onremovetrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onremovetrack`
(set-onaddtrack! this val)
Property.
The web.TextTrackList
property onaddtrack is an event handler
is called when the addtrack event occurs, indicating that a new
track has been added to the media element whose text tracks the
represents.
TextTrackList.onaddtrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onaddtrack
Property. The `web.TextTrackList` property onaddtrack is an event handler is called when the addtrack event occurs, indicating that a new track has been added to the media element whose text tracks the represents. `TextTrackList.onaddtrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onaddtrack`
(set-onchange! this val)
Property.
The web.TextTrackList
property onchange is an event handler
is called when the change event occurs, indicating that a change
occurred on a web.TextTrack
in the VideoTrackList.
TextTrackList.onchange = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onchange
Property. The `web.TextTrackList` property onchange is an event handler is called when the change event occurs, indicating that a change occurred on a `web.TextTrack` in the VideoTrackList. `TextTrackList.onchange = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onchange`
(set-onremovetrack! this val)
Property.
The web.TextTrackList
onremovetrack event handler is called
the removetrack event occurs, indicating that a text track has
removed from the media element, and therefore also from the TextTrackList.
TextTrackList.onremovetrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onremovetrack
Property. The `web.TextTrackList` onremovetrack event handler is called the removetrack event occurs, indicating that a text track has removed from the media element, and therefore also from the TextTrackList. `TextTrackList.onremovetrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onremovetrack`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close