Items API Events
validated
Fires when the validation of the Question response has completed and the validation UI has been rendered.
You would want to be notified about this event firing, because you may want to show an animation based on the outcome of the response, for example.
Examples
itemsApp.question('[my_response_id]').on('validated', function () {
console.log('This code executes when the validation of the Question response has completed.');
});
Related articles
- The
beforeValidate
event, the event that occurs before the response validation has begun.