Is there a way to create an timed redirect page in Wix that takes the user to another URL in say 5 seconds?

Hello,

Ok so I know how to program a 5 second redirect page in Godaddy, so that say when someone clicks on an advertisement it goes there saying “thank you for using our site, in a few seconds you will automatically be redirected to website ABC” etc.

Q: Is there a way to do the same in Wix? Ie create an timed redirect page in Wix that takes the user to another URL in say 5 seconds?

Thank you!

Yes, this should be possible, but you will need to code it.

The working process should be easy to understand.

  1. Once you are redirected to your THANK-YOU-PAGE and your THANK-YOU-PAGE opens…
  2. $w.onReady() on your TY-PAGE starts a time-outed-function…
$w.onReady(()=>{console.log('page ready...');
   setTimeOut(()=>{
      myFunction();
   },5000);
});


function myFunction() {
   ...code here what should happen after 5seconds visiting on your TY-PAGE.
}

This is a very simple example → you will have to upgrade and improve (complete) it.