Skip to content

VabletLibraryLoaded

This event is triggered when the library is ready to use. Generally used when you need do something on page load after the Vablet library is ready.

Use instead of other DOM loaded events to ensure Vablet functionality.

Code Example

document.addEventListener('VabletLibraryLoaded', function onBridgeReady(event) {
                // Start calling Vablet functions here
            }, true);