Javascript scrollBottom (scroll bottom)

Code Snippets 4 U
const element = document.getElementsByClassName("vc-layout__content")[0] as HTMLDivElement;
// maximum pixels scrollable element can scroll
const maxScroll = element.scrollHeight - element.clientHeight;
// scrollBottom will give you the pixels a scrollable element have scrolled
// from the bottom
const scrollBottom = maxScroll - element.scrollTop;

Leave a Reply

Your email address will not be published. Required fields are marked *

one + seven =