Search.../

onPause( )

Adds an event handler that runs when the playback is paused.

Description

A video in a video box is paused when a site visitor clicks the video box's pause button or by calling its pause() or stop() functions.

Syntax

function onPause(handler: EventHandler): VideoBox
handler: function EventHandler(event: Event): void

onPause Parameters

NAME
TYPE
DESCRIPTION
handler

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

Returns

The video box 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 box that has been paused

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