web api instance property
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
const el = document.querySelector("video");
console.log(el.seeking); // true or false
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
seekingeventseekedeventHTMLVideoElementHTMLAudioElement