This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Assess API

item:load

Fires when a selected Item has been loaded, rendered and is ready for the learner to interact with.

You would want to be notified about this event firing so that you can execute additional code based on the Item that has loaded, such as tracking learner interactions or automatically opening a calculator feature.

Examples

itemsApp.on('item:load', function () {
    console.log('This code executes when the Item has completed loading.');
});

Related articles

Was this article helpful?