Video seeking attribute

Definition and Usage

Returns if the user is currently searching within the video: seeking Property.

Searching refers to moving/skipping to a new position within the video.

Note:This property is read-only.

Example

Display whether the user is currently searching within the video:

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

Try It Yourself

Syntax

videoObject.seeking

Technical Details

Return Value: Boolean value, returns true if the user is currently searching; otherwise returns false.

Browser Support

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
Support 9.0 Support Support Support