'scroll to the bottom when dynamic loading

I am trying to scroll to the bottom of the page via JS - https://airtable.com/embed/shrqYt5kSqMzHV9R5/tbl8c8kanuNB6bPYr?backgroundColor=green&viewControls=on

I tried several methods below but none does not work. To test this, you can run it in the chrome console window.

window.scrollTo({ left: 0, top: document.body.scrollHeight, behavior: "smooth" });

$('#html, body').scrollTop($('#html, body')[0].scrollHeight);

window.scroll(0, document.body.scrollHeight) 

window.scrollTo(0, document.querySelector(".antiscroll-scrollbar").scrollHeight);

$('.antiscroll-scrollbar').scrollTop(120);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source