Hi,
After trying to learn from previous posts, I still need help on my welcome with executing 2 different actions:
-
Hide video after it ends.
-
Jump to another page on my website after video ends (desktop and mobile).
For the second one, I tried the following code, but it doesn’t seem to work.
Thank you very much!
Ido
import wixLocation from 'wix-location';
$w.onReady(function () {
setTimeout(() => {
wixLocation.to("pageURL");
}, 10000);
}):