For the complete documentation index, see llms.txt. This page is also available as Markdown.

widgetLoaded

Change in the loading state of the Video Provider.

Details

The Widget has finished loading and is ready to use.

Event: widgetLoaded

Type: CustomEvent

Syntax

videoId.addEventListener('widgetLoaded', onWidgetLoaded);

Description

This event is emitted when the component has finished loading and is ready to begin the capture process.


Example

<facephi-video-id
    onWidgetLoaded={() => {
        console.log('VideoID is fully loaded');
    }}
/>

Last updated