The removetrack event is fired when a track is removed from a VideoTrackList.
| Bubbles | No |
|---|---|
| Cancelable | No |
| Interface | TrackEvent |
| Event handler property | onremovetrack |
Examples
Using addEventListener():
const videoElement = document.querySelector('video');
videoElement.videoTracks.addEventListener('removetrack', (event) => {
console.log(`Video track: ${event.track.label} removed`);
});
Using the onremovetrack event handler property:
const videoElement = document.querySelector('video');
videoElement.videoTracks.onremovetrack = (event) => {
console.log(`Video track: ${event.track.label} removed`);
};
Specifications
| Specification | Status |
|---|---|
| HTML Living Standard The definition of 'removetrack' 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 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
removetrack 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,change - This event on
AudioTrackListtargets:removetrack - This event on
MediaStreamtargets:removetrack - Media Streams API
- WebRTC
