jesse1981
5/7/2013 - 11:44 PM

A method to invoke increasing pagination when window scroll gets to the bottom.

A method to invoke increasing pagination when window scroll gets to the bottom.

$(window).scroll(function(){
	var $window = $(this);
	if($window.scrollTop() == $(document).height() - $window.height()) $('#more').click()
});