TextTrackCue.onexit

The onexit EventHandler of the TextTrackCue interface processes exit events.

The exit event fires when a cue stops being active.

Syntax

TextTrackCue.onexit = function;
TextTrackCue.addEventListener('exit', function);

Example

In the following example, onenter is used to print to the console when cue1 stops being displayed as the active cue.

cue1.onexit = function() {
  console.log('Cue 1 has left the building.');
}

Specifications

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
onexit
23
12
31
10
≤12.1
6
≤37
25
31
≤12.1
7
1.5

© 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/TextTrackCue/onexit