API Callback Methods

When Alvis script is loaded and ready, you can hook into the event. This requires a function argument.

window.Alvis("on", "ready", function() { }); 

When we dismiss the checklist and the launcher, you can hook into the event. This requires a function argument.

window.Alvis("on", "dismiss", function(e) { }); 

When all the checklist items are completed by a user, you can hook into the event. This requires a function argument.

window.Alvis("on", "checklist-complete", function(e) { }); 

Last updated

Was this helpful?