Checklist By Alvis
  • Checklist introduction
  • HubSpot Installation
  • Widget
    • Widget installation
    • Show or hide checklist on URL changes
    • Show checklist manually
    • Embed checklist on a page
    • Hide checklist launcher
    • API Callback Methods
  • Why my checklist isn't acting correctly?
  • Checklist item actions
    • URL action
  • Complete checklist items
  • Add images in item detail
  • Customize checklist location
  • Customize embedded checklist UI
    • Default Checklist Scss File
  • Content Security Policy
  • How to set up multiple checklists in sequential order
  • What happens when trial ends?
  • How to uninstall
Powered by GitBook
On this page

Was this helpful?

  1. Widget

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) { }); 

PreviousHide checklist launcherNextWhy my checklist isn't acting correctly?

Last updated 2 years ago

Was this helpful?