top of page
Element Test
$w("#buttonWithRedirection").onClick(() => {
$w("#buttonWithRedirection").disable()
new Promise(resolve => setTimeout(resolve, 3000));
wixLocation.to("/babies")
})
$w("#buttonWithoutRedirection").onClick(() => {
$w("#buttonWithoutRedirection").disable()
})
bottom of page