lightwalker01
10/17/2014 - 8:45 AM

Detect scrollbar & scroll to bottom

Detect scrollbar & scroll to bottom

//################## Detect scrollbar & scroll to bottom  ###############
(function ($) {
    $.fn.hasScrollBar = function () {
        return this.get(0).scrollHeight > this.get(0).clientHeight;
    }

    $.fn.isScrollToBottom = function () {
        return $(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight;
    }
})(jQuery);