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 Questions API

changed

Fires when the learner has entered or selected a response.

You would want to be notified about this event firing, because you would want to know when the learner has interacted with the assessment so that you can update your application interface, for example.

Examples

itemsApp.question('[my_response_id]').on('changed', function () {
    console.log('This code executes when the learner has entered or selected a response.');
});

Related articles

Was this article helpful?