Questions API Events
rendered
Fires when a Feature has rendered.
You would want to be notified about this event firing, because you may want to use a public method to automatically open or start the Feature for the learner, for example.
Examples
itemsApp.feature('[my_response_id]').on('rendered', function () {
console.log('This code executes when the Feature is rendered.');
});
Related articles
- The
render
feature
instance public method. - The
isRendered
feature
instance public method. - The
render_optimization
initialization options.