pauseOnExit
Summary
Returns the pause-on-exit flag on a TextTrackCue. When the flag is true, playback will pause when it reaches the cue’s endTime.
Property of apis/audio-video/TextTrackCueapis/audio-video/TextTrackCue
Syntax
Note: This property is read-only.
var result = TextTrackCue.pauseOnExit;
Return Value
Returns an object of type BooleanBoolean
Examples
This example displays the cue (caption), startTime, endTime, pauseOnExit, and id for all cues in a track.
<head>
<script type="text/javascript"></script>
</head>
<body>
<video id="video1" controls >
<source src="video.mp4">
<track id="entrack" label="English subtitles" kind="captions" src="entrack.vtt" srclang="en" default>
</video>
<p><button onclick="getCues();">Show tracks</button></p>
<div style="display:block; overflow:auto; height:200px; width:auto" id="display"></div>
</body>
Related specifications
- W3C HTML5 Specification
- W3C Editor’s Draft
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article