TextTrackList.onchange
The TextTrackList
property onchange
is an event handler which is called when the change
event occurs, indicating that a change has occurred on a TextTrack
in the VideoTrackList
.
Note: You can also add a handler for the change
event using addEventListener()
.
Syntax
TextTrackList.onchange = eventHandler;
Example
This snippet establishes a handler for the change
event that looks at each of the tracks in the list, calling a function to update the state of a user interface control that indicates the current state of the track.
var trackList = document.querySelector("video, audio").textTracks; trackList.onchange = function(event) { .... /* do something */ };
Specifications
Specification |
---|
HTML Standard (HTML) # handler-tracklist-onchange |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
onchange |
33 |
18 |
31 |
No |
20 |
7 |
4.4 |
33 |
31 |
20 |
7 |
2.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TextTrackList/onchange