Back to Content

HTMLMediaElement: buffered property

files/en-us/web/api/htmlmediaelement/buffered/index.md

latest937 B
Original Source

{{APIRef("HTML DOM")}}

The buffered read-only property of {{domxref("HTMLMediaElement")}} objects returns a new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent has buffered at the moment the buffered property is accessed.

Value

A new static normalized TimeRanges object that represents the ranges of the media resource, if any, that the user agent has buffered at the moment the buffered property is accessed.

Examples

js
const obj = document.createElement("video");
console.log(obj.buffered); // TimeRanges { length: 0 }

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("HTMLMediaElement")}}: Interface used to define the HTMLMediaElement.buffered property