ユーザーがウィンドウの下部から 500px のときにクリックを発生させるこの関数があります。
css で html と body を height:100% に設定した場合を除いて、すべて正常に動作します。
これが「作業」スクリプトです。
$(document).ready(function() {
var timeout = '';
$(window).scroll(function (e) {
var intBottomMargin = 500;
clearTimeout(timeout);
//if less than intBottomMargin px from bottom
if ($(window).scrollTop() >= $(document).height() - $(window).height() - intBottomMargin) {
timeout = setTimeout(function(){
$("#next-paginav")[0].click();
}, 300);
}
});
});
HTML と本文の高さが 100% の場合、同じスクリプトを機能させるにはどうすればよいですか?
やることは本当に簡単だと思います。