Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML Audio/Video DOM play() Method

❮ HTML Audio/Video DOM Reference

Example

A video with play and pause buttons:

var vid = document.getElementById("myVideo");

function playVid() {
    vid.play();
}

function pauseVid() {
    vid.pause();
}
Try it Yourself »

Definition and Usage

The play() method starts playing the current audio or video.

Tip: Use the pause() method to pause the current audio/video.


Browser Support

The numbers in the table specify the first browser version that fully supports the method.

Method
play() Yes 9.0 Yes Yes Yes

Syntax

audio|video.play()

Parameters

None

Return Value

No return value

❮ HTML Audio/Video DOM Reference