Video play() Method
Example
A video with play and pause buttons:
var x = document.getElementById("myVideo");
function playVid()
{
x.play();
}
function pauseVid()
{
x.pause();
}
Try it yourself »
Definition and Usage
The play() method starts playing the current video.
Tip: This method is often used together with the pause() method.
Tip: Use the controls property to display video controls (like play, pause, seeking, volume, etc, attached on the video).
Browser Support
The play() method is supported in all major browsers.
Note: This method is not supported in Internet Explorer 8 and earlier.
Syntax
videoObject.play()
Parameters
None |
Return Value
No return value |
Video Object