TextTrackCue: enter event
The enter event fires when a cue becomes active. In the case of subtitles or a caption this is when it displays over the media.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener('enter', event => { })
onenter = event => { }
Event type
A generic Event with no added properties.
Example
In the following example, cue1 prints to the console when it is the active cue.
cue1.addEventListener('enter', event => {
console.log('Cue 1 has displayed');
});
Specifications
| Specification |
|---|
| HTML Standard # event-media-enter |
| HTML Standard # handler-texttrackcue-onenter |
Browser compatibility
BCD tables only load in the browser