currency.js 574 Bytes
var $ = require('jquery');
var page = 1;

function ajaxCurrencyDetail(page) {
    $.ajax({
        type: 'POST',
        url: '/home/ajaxCurrencyDetail',
        dataType: 'html',
        data: {
            page: page
        },
        success: function(data) {
            $('.coin-detail').append(data);
            window.rePosFooter();
        }
    });
}

$(window).scroll(function() {
    if ($(window).scrollTop() + $(window).height() > $('body').height() - 1) {
        page++;
        ajaxCurrencyDetail(page);
        return;
    }
});

ajaxCurrencyDetail(page);