For the complete documentation index, see llms.txt. This page is also available as Markdown.

Show checklist manually

To manually show the checklist, add the following code. Keep in mind that if no user is identified, the checklist will not be shown.

window.Alvis("show_checklist");

If you'd like to show a button that triggers the checklist popup, you can add the onclick attribute to the button.

<button onclick='window.Alvis("show_checklist");'>
  Onboard Me
</button>

You can also manually show a different checklist, but you have to make sure the targeting conditions are met if there is any.

window.Alvis("show_checklist", "{{CHECKLIST_ID}}");

Here is how to hide the current checklist.

window.Alvis("hide_checklist");

To dismiss the current checklist, this will also hide the launcher all together.

window.Alvis("dismiss_checklist");

Last updated