What is this code about?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>
Statistics: Posted by Stuly — Tue Jan 16, 2024 7:35 am