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?
Yes, this should be possible, but you will need to code it.
The working process should be easy to understand.
Once you are redirected to your THANK-YOU-PAGE and your THANK-YOU-PAGE opens…
$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.