Sceko
11/16/2015 - 9:13 AM

Infinite Scroll CDN

Infinite Scroll CDN

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-infinitescroll/2.1.0/jquery.infinitescroll.min.js"></script>

<script>
$('#content').infinitescroll({
    navSelector  : "div.navigation",
    // selector for the paged navigation (it will be hidden)
    nextSelector : "div.navigation a:first",
    // selector for the NEXT link (to page 2)
    itemSelector : "#content",
    // selector for all items you'll retrieve
    animate      : false,
    loading: {
        img:"http://www.oklop.me/forum/public/img/loading.gif",
        msgText: "",
    },
});
</script>