HTML DOM Video seeking Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

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 »

Definition and Usage

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