# Events

In some circumstances, we may dispatch events for you to hook onto, such as load events. This will enable you to tell your application to wait until the widgets have completed a certain task prior to running your code.

# widgetsLoaded

window.addEventListener('widgetsLoaded', (e) => {
    console.log('Widgets have loaded!');
}, false);