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 2,014 times
-2

Michał Perłakowski
- 88,409
- 26
- 156
- 177
2 Answers
0
You can get it by
var scrollBottom = $(window).scrollTop() + $(window).height();

brk
- 48,835
- 10
- 56
- 78