Search.../

onPlay( )

Adds an event handler that runs when playback is started or restarted.

Description

A video can be played by a user clicking the video player's play button or by calling its play() function.

Syntax

function onPlay(handler: EventHandler): VideoPlayer
handler: function EventHandler(event: Event): void

onPlay Parameters

NAME
TYPE
DESCRIPTION
handler

The name of the function or the function expression to run when the video is played.

Returns

The video player that triggered the event.

Return Type:

EventHandler Parameters

NAME
TYPE
DESCRIPTION
event

The event that occurred.

Returns

This function does not return anything.

Return Type:

void

Related Content:

Was this helpful?

Get the ID of the video player that is playing

Copy Code
1$w("#myVideoPlayer").onPlay( (event) => {
2 let targetId = event.target.id; // "myVideoPlayer"
3});