Firefox Tomorrow

web api instance property

HTMLMediaElement: seeking property

View on MDN ↗

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