Search.../

onProgress( )

Adds an event handler that runs when playback progresses.

Description

A video continually progresses as the video plays.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

Get the ID of the video player that is progressing

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