HTML DOM Video paused Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Video paused Property

❮ Video Object

Example

Find out if the video is paused:

var x = document.getElementById("myVideo").paused;
Try it Yourself »

Definition and Usage

The paused property returns whether the video is paused.

Note: This property is read-only.


Browser Support

Property
paused Yes 9.0 Yes Yes Yes

Syntax

videoObject.paused

Technical Details

Return Value: A Boolean, returns true if the video is paused. Otherwise it returns false

❮ Video Object