Video seeking Property

❮ Video Object

Example

Show if the user is currently seeking in the video:

var x = document.getElementById("myVideo");
document.getElementById("mySpan").innerHTML = ("Seeking: " + x.seeking);
Try it Yourself »

Description

The seeking property returns if the user is currently seeking in the video.

Seeking is when you move/skip to a new position in the video.

Note: This property is read-only.


Browser Support

Property
seeking Yes 9.0 Yes Yes Yes

Syntax

videoObject.seeking

Technical Details

Return Value: A Boolean, returns true if the user is currently seeking, otherwise it returns false

❮ Video Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.