fredwu / jquery-endless-scroll

Endless/infinite scrolling/pagination.
http://fredwu.github.com/jquery-endless-scroll/
838 stars 176 forks source link

IE8 fails to work if you use $(document).endlessScroll(); #3

Closed rlightner closed 13 years ago

rlightner commented 13 years ago

Setting to $(window) works but fails on other browsers.

The fix I used was:

Line: 28

if (this === document || window) {

instead of:

if (this === document) {

fredwu commented 13 years ago

Thanks @rlightner, could you please submit a pull request with the fix? :)