SoFunction
Updated on 2025-03-01

Basic operation examples of ScrollDown


$(document).ready(function () {
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) //Free when the scrollbar rolls to the bottom
{
}

});
})