HTMLMediaElement: seeking property

The seeking read-only property of the HTMLMediaElement interface is a Boolean indicating whether the resource, the <audio> or <video>, is in the process of seeking to a new position.

Value

A boolean value.

Examples

js
const el = document.querySelector("video");
console.log(el.seeking); // true or false

Specifications

Browser compatibility

See also