HTMLMediaElement: seeked event
The seeked event is fired when a seek operation completed, the current playback position has changed, and the Boolean seeking attribute is changed to false.
| Bubbles | No |
|---|---|
| Cancelable | No |
| Interface | Event |
| Target | Element |
| Default Action | None |
| Event handler property | GlobalEventHandlers.onseeked |
Examples
These examples add an event listener for the HTMLMediaElement's seeked event, then post a message when that event handler has reacted to the event firing.
Using addEventListener():
const video = document.querySelector('video');
video.addEventListener('seeked', (event) => {
console.log('Video found the playback position it was looking for.');
});
Using the onseeked event handler property:
const video = document.querySelector('video');
video.onseeked = (event) => {
console.log('Video found the playback position it was looking for.');
};
Specifications
| Specification |
|---|
| HTML Standard # event-media-seeked |
Browser compatibility
BCD tables only load in the browser
Related Events
- The HTMLMediaElement
playingevent - The HTMLMediaElement
waitingevent - The HTMLMediaElement
seekingevent - The HTMLMediaElement
seekedevent - The HTMLMediaElement
endedevent - The HTMLMediaElement
loadedmetadataevent - The HTMLMediaElement
loadeddataevent - The HTMLMediaElement
canplayevent - The HTMLMediaElement
canplaythroughevent - The HTMLMediaElement
durationchangeevent - The HTMLMediaElement
timeupdateevent - The HTMLMediaElement
playevent - The HTMLMediaElement
pauseevent - The HTMLMediaElement
ratechangeevent - The HTMLMediaElement
volumechangeevent - The HTMLMediaElement
suspendevent - The HTMLMediaElement
emptiedevent - The HTMLMediaElement
stalledevent