$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(); });
top of page
bottom of page