Is there a way to make a guide disappear after 5 seconds
I have a survey. Once the user answers the survey, I have a final Thank You screen that I want to disappear after 5 seconds.
0
I have a survey. Once the user answers the survey, I have a final Thank You screen that I want to disappear after 5 seconds.
Comments
We've used a custom code block for similar use cases, try adding this on your thank you step:
setTimeout(function() {
pendo.onGuideDismissed();
}, 5000);
Please sign in to leave a comment.