Hi! I need to have a page code to auto refresh group of page after 2 second from the onReady.
I try to use something like this
import wixLocation from ‘wix-location’;
$w.onReady(function () {
setTimeout(() => wixLocation.to(wixLocation.url), 5000)//TIME IN MILLISECONDS
})
but it start to refresh page every two second. I just need to refresh one time.
Thanks