Back to Content

HTMLMediaElement: paused property

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

latest483 B
Original Source

{{APIRef("HTML DOM")}}

The read-only HTMLMediaElement.paused property tells whether the media element is paused.

Value

A boolean value. true is paused and false is not paused.

Examples

js
const obj = document.createElement("video");
console.log(obj.paused); // true

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

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