Vinyasa Class: Hip mobility, flexibility, strength and stability
- Marda Zechiel
- Oct 1, 2022
- 1 min read
Updated: Nov 16, 2022
$w.onReady(function () {
function scrollToChatbot() {
setTimeout(() => {
const chatbotPlaceholder = $w('#chatbotPlaceholder');
if (chatbotPlaceholder) {
$w('#page').scrollTo(chatbotPlaceholder, { "duration": 500 });
}
}, 3000); // Adjust the timeout as needed
}
scrollToChatbot();
});
Comments