I am trying to find scroll bottom height, but I have not find any solution. Using $(window).scrollTop() we can get the top height. How can we find the bottom height?
Asked
Active
Viewed 1,892 times
-2
Michał Perłakowski
- 80,501
- 25
- 149
- 167
2 Answers
0
You can get it by
var scrollBottom = $(window).scrollTop() + $(window).height();
brk
- 46,805
- 5
- 49
- 71