The change event is fired when a video track is made active or inactive, for example by changing the track's selected property.
| Bubbles | No |
|---|---|
| Cancelable | No |
| Interface | Event |
| Event handler property | onchange |
Examples
Using addEventListener():
const videoElement = document.querySelector('video');
videoElement.videoTracks.addEventListener('change', (event) => {
console.log(`'${event.type}' event fired`);
});
// changing the value of `selected` will trigger the `change` event
const toggleTrackButton = document.querySelector('.toggle-track');
toggleTrackButton.addEventListener('click', () => {
const track = videoElement.videoTracks[0];
track.selected = !track.selected;
});
Using the onchange event handler property:
const videoElement = document.querySelector('video');
videoElement.videoTracks.onchange = (event) => {
console.log(`'${event.type}' event fired`);
};
// changing the value of `selected` will trigger the `change` event
const toggleTrackButton = document.querySelector('.toggle-track');
toggleTrackButton.addEventListener('click', () => {
const track = videoElement.videoTracks[0];
track.selected = !track.selected;
});
Specifications
| Specification | Status |
|---|---|
| HTML Living Standard The definition of 'change' in that specification. |
Living Standard |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
change event | Chrome
Full support
45
| Edge
Full support
79
| Firefox
Full support
33
| IE Full support 10 | Opera
Full support
32
| Safari Full support 6.1 | WebView Android Full support 45 | Chrome Android
Full support
45
| Firefox Android
Full support
33
| Opera Android
Full support
32
| Safari iOS Full support 7 | Samsung Internet Android No support No |
Legend
- Full support
- Full support
- No support
- No support
- User must explicitly enable this feature.
- User must explicitly enable this feature.
See also
- Related events:
addtrack,removetrack - This event on
AudioTrackListtargets:change - Media Streams API
- WebRTC
