-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
  • 80,501
  • 25
  • 149
  • 167

2 Answers2

0

Use:

$(window).scrollTop() + $(window).height()
Michał Perłakowski
  • 80,501
  • 25
  • 149
  • 167
0

You can get it by

var scrollBottom = $(window).scrollTop() + $(window).height();
brk
  • 46,805
  • 5
  • 49
  • 71