HTMLMediaElement: paused property - Web APIs | MDN

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

Specification
HTML
# dom-media-paused-dev

Browser compatibility

See also

  • HTMLMediaElement: Interface used to define the HTMLMediaElement.paused property

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.