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;
Javascript scrollBottom (scroll bottom)
