Advance guide after 5 seconds

Is there a way to advance a guide after waiting five seconds? 

I have a user click the "Next" button on a guide but the page that opens takes a little while. It ends up skipping the next step and going to the subsequent one.

0

Comments

2 comments
  • Good morning Jim, 

    You may have this already, but this is what I used a couple of years ago ha ha

    let timeoutID;

    function delayTimer() {
      timeoutID = setTimeout(delayedFunction, 3000);
    }

    function delayedFunction() {
      alert(“Three seconds have elapsed.”);
    }

    or 

    //code before the pause
    setTimeout(function(){}, 5000);

    The number is in seconds. 

    If there is anyone that has an updated Java code, please let us know!!

    0
  • Thanks David!

    0

Please sign in to leave a comment.

Didn't find what you were looking for?

New post