Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2933

phpBB Custom Coding • Re: I Want Your Ideas About Adding Tabs to Index

$
0
0
Okey.

Code:

<script>this.$ = this.jQuery = jQuery.noConflict(true);var ajaxDone = true;var nextPage = $(".next a").attr("href");var scrollPosition = 0;$(document).scroll(function() {    if (localStorage.getItem('stored-custom-tab') !== 'recent-panel') {        return; // Sonsuz kaydırma sadece "recent-panel" çerez değeri olduğunda çalışır    }    var currentPosition = $(this).scrollTop();    scrollPosition = currentPosition;        if (window.innerHeight + window.scrollY + 500 >= document.body.scrollHeight && nextPage && ajaxDone) {        ajaxDone = false;        $.get(nextPage, function(data) {            ajaxDone = true;            nextPage = $(".next a", data).attr("href");            $(".forabg.recenttopics .topiclist.topics li.row", data).each(function() {                $(".forabg.recenttopics .topiclist.topics").append(this);            });        });    }});</script>
What is this code about?

Statistics: Posted by Stuly — Tue Jan 16, 2024 7:35 am



Viewing all articles
Browse latest Browse all 2933

Trending Articles