Latest web development tutorials

HTML DOM Video paused property

Video Object Reference Video Object

Examples

See if the video is paused:

var x = document.getElementById ( "myVideo") paused.;

x The output is:

true

try it"

Definition and Usage

paused property returns whether the video is paused.

Note: This property is read-only attribute.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support paused property

Note: Internet Explorer 8 or earlier browser does not support this property.


grammar

videoObject .paused

technical details

return value: Boolean value that, if the video is paused Returns true, false otherwise


Video Object Reference Video Object