The removetrack event is fired when a track is removed from an AudioTrackList.
| Bubbles | No |
| Cancelable | No |
| Interface | TrackEvent
|
| Event handler property | onremovetrack
|
Examples
Using addEventListener():
const videoElement = document.querySelector('video');
videoElement.audioTracks.addEventListener('removetrack', (event) => {
console.log(`Audio track: ${event.track.label} removed`);
});
Using the onremovetrack event handler property:
const videoElement = document.querySelector('video');
videoElement.audioTracks.onremovetrack = (event) => {
console.log(`Audio track: ${event.track.label} removed`);
};
Specifications
| Specification | Status |
| HTML Living StandardThe 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.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
removetrack event
|
Chrome Full support 37 Full support 37 Disabled' From version 37: this feature is behind the |
Edge Full support 79 Full support 79 Disabled' From version 79: this feature is behind the |
Firefox Full support 33 Full support 33 Disabled' From version 33: this feature is behind the |
IE
Full support 10 |
Opera Full support 24 Full support 24 Disabled' From version 24: this feature is behind the |
Safari
Full support 6.1 |
WebView Android
No support No |
Chrome Android Full support 37 Full support 37 Disabled' From version 37: this feature is behind the |
Firefox Android Full support 33 Full support 33 Disabled' From version 33: this feature is behind the |
Opera Android Full support 24 Full support 24 Disabled' From version 24: this feature is behind the |
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
VideoTrackListtargets:removetrack - This event on
MediaStreamtargets:removetrack - Media Streams API
- WebRTC
AudioTrackList: removetrack event by Mozilla Contributors is licensed under CC-BY-SA 2.5.