Questions API Events
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
- The
save()
public method, which allows you to save the responses in the current assessment.