Search.../

onPause( )

Adds an event handler that runs when playback is paused.

Description

An element can be paused by a user clicking the gallery or slideshow's pause button or by calling its pause() function

Notes:

Syntax

function onPause(handler: EventHandler): Gallery | Slideshow
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 element is paused.

Returns

The gallery or slideshow 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 element that has been paused

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