All Collections
General FAQ
Onboarding materials
Can I set a delay for my materials?
Can I set a delay for my materials?

Learn how to set delay for your onboarding materials

Simay avatar
Written by Simay
Updated over a week ago

For Guides, you can set a delay to a specific Guide step while editing it through the Chrome Extension.

For other materials, you can combine the JavaScript timeout function and custom trigger options from our JavaScript API.

Example of a Checklist being triggered after 7 seconds:

setTimeout(function(){userGuiding.launchChecklist(12)}, 7000);
Did this answer your question?