HTMLMediaElement.paused
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
var obj = document.createElement('video');
console.log(obj.paused); // true
Specifications
Specification |
---|
HTML Standard # dom-media-paused-dev |
Browser compatibility
BCD tables only load in the browser
See also
- The interface defining it,
HTMLMediaElement
.