Easy Tutorial
❮ Prop Textarea Name Prop Range Disabled ❯

Video seeking Property

Video Object

Example

Display whether the user is currently seeking in the video:

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

x Output value is:

Seeking: true

Definition and Usage

The seeking property returns whether the user is currently seeking in the audio/video.

Seeking refers to the user moving/jumping to a new position in the audio/video.

Note: This property is read-only.


Browser Support

All major browsers support the seeking property.

Note: Internet Explorer 8 or earlier versions do not support this property.


Syntax

Technical Details

| Return Value: | Boolean, true if the user is seeking, otherwise false. | | --- | --- |


❮ Prop Textarea Name Prop Range Disabled ❯