dom / latest / texttrackcue / exit_event.html /

TextTrackCue: exit event

The exit event fires when a cue stops being active.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener('exit', event => { })

onexit = event => { }

Event type

A generic Event with no added properties.

Example

In the following example, cue1 prints to the console when it stops being displayed as the active cue.

cue1.addEventListener('enter', event => { 
  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
exit_event
23
12
31
10
≤12.1
6
4.4
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/exit_event