Get the scroll distance from bottom to scroll, var distanceFromBottom (ok) vinmec.com (ok)

https://stackoverflow.com/questions/34874658/get-the-scroll-distance-from-bottom-to-scroll

var distanceFromBottom = $(document).height() - $(window).height() - $(document).scrollTop();

Last updated