laravel load more on scroll

Solutions on MaxInterview for laravel load more on scroll by the best coders in the world

showing results for - "laravel load more on scroll"
Godric
17 Jul 2020
1
2
3
4<script type="text/javascript">
5    $('ul.pagination').hide();
6    $(function() {
7        $('.scrolling-pagination').jscroll({
8            autoTrigger: true,
9            padding: 0,
10            nextSelector: '.pagination li.active + li a',
11            contentSelector: 'div.scrolling-pagination',
12            callback: function() {
13                $('ul.pagination').remove();
14            }
15        });
16    });
17</script>
18
similar questions
queries leading to this page
laravel load more on scroll