FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Video seeking Property

Video Object Reference 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);

The result of x could be:

Seeking: true
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 Reference Video Object