-2

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?

Michał Perłakowski
  • 88,409
  • 26
  • 156
  • 177

2 Answers2

0

Use:

$(window).scrollTop() + $(window).height()
Michał Perłakowski
  • 88,409
  • 26
  • 156
  • 177
0

You can get it by

var scrollBottom = $(window).scrollTop() + $(window).height();
brk
  • 48,835
  • 10
  • 56
  • 78