Questions tagged [jquery-ias]

Infinite Ajax Scroll(ias) is a jQuery plugin to turn your paginated pages into infinite scrolling pages with ease.

Description

Infinite AJAX Scroll is a jQuery infinite scrolling plugin. It works by reading the next (and previous) links of your existing server-side pagination and load these pages via AJAX when the visitor scrolls to the end of the page.

Features:

  • Progressive enhancement: Infinite AJAX Scroll works by enhancing your server-side pagination with AJAX. When a client doesn't support JavaScript it will fall back on your server-side pagination.
  • It is Extensible through extensions.
  • Quick and easy to implement because it extends your already existing server-side pagination (takes less then 5 minutes to implement)

Links

Infinite AJAX Scroll (official website)

GitHub

45 questions
4
votes
1 answer

reset infinite scroll with ajax content

I am using the ajax infinite scroll with a comment system. It works fine until a user posts a new comment - this breaks the infinite scroll, the 'load more items' link is still there but nothing happens when you click it. I have seen this question:…
user3312792
  • 1,001
  • 2
  • 12
  • 27
4
votes
3 answers

Reset / disable infinite scroll after AJAX call

I am using infinite-ajax-scroll (https://github.com/webcreate/infinite-ajax-scroll) plugin with filtering. I have the filters working with the infinite scroll but my issue is, whenever the scroll get the the end of the results for one filter it…
LeeTee
  • 5,745
  • 14
  • 70
  • 132
3
votes
0 answers

Infinite AJAX Scroll next, and back?

I am using Jquery plugin Infinite AJAX Scroll with History Extension in order to change the page URL while scrolling. Now, let’s say, I scroll down to the 6th ajax load, the page URL has now changed to hostname/?page=6. If you then reload this link,…
simone
  • 31
  • 2
2
votes
1 answer
2
votes
0 answers

How to implement load previous items like infinite ajax scroll history example

currently I'm trying to use infinite ajax scroll function with my posts. Here I want to make a link to load previous items like implemented on infinite ajax scroll history example here: http://infiniteajaxscroll.com/examples/history/page3.html (see…
JrrMaster
  • 65
  • 1
  • 7
1
vote
0 answers

Infinite Ajax Scroll v3 adds random numeric query params to page URLs

I've a got a strange problem with Jquery-IAS (http://infiniteajaxscroll.com/) v3.0.0-beta6. It adds random numeric query params to page URLs. For example, it try to load /?page=2&1612427293001 instead of /?page=2 and gets 404 error. Can't find…
Mahdi
  • 439
  • 4
  • 4
1
vote
1 answer

Infinite Ajax Scroll: Only loads one page, then stops working

I am trying to implement infinite ajax scroll in a Bootstrap modal. Here is what the modal looks like (without any data loaded yet):
1
vote
1 answer

Infinite Ajax Scroll jQuery - Update title on scroll / pageChange

Is there any possibility to get the TITLE in the head to get updated when scrolling? Im using Infinite Ajax Scroll. http://infiniteajaxscroll.com var ias = jQuery.ias({ container: '#posts', item: '.post', pagination: '#pagination', next: …
1
vote
0 answers

infinite scrolling doesn't work when the popup appears

I installed an extension for my magento store, that make a quickview modal in the products list (imedia quickview - it' actually a bootstrap modal ) and works nice, but due to many products in the list i add a script for infinite scroll…
1
vote
1 answer

Jquery infinity scroll loops over and over using Mysql/PHP

I'm trying to implement Jquery infinity scroll found at (http://infiniteajaxscroll.com/) together with my MYSQL and PHP. And it works, sort of. I found similar example here but my was quite different anyway…
Mensur
  • 399
  • 5
  • 25
1
vote
0 answers

infinite ajax scroll plugin and firefox

I'm using infiniteajaxscroll plugin to load new content into a div and it works fine with safari and chrome. In firefox I can see that the jquery-ias code is hiding the pagination div but when I reach the end of the page nothing happens and I can't…
Arctic
  • 11
  • 2
1
vote
0 answers

Getting ias working with ajax + pods in Wordpress

so I want to get Infinite Scroll (http://infiniteajaxscroll.com/) to work the HTML Part is:
1
vote
1 answer

How to use jQuery Infinite AJAX Scroll including a loop

As I'm a newbie on javascript, I'm here to learn some techniques. I'm trying to implement inside my code an infinite Ajax scroll. This is my php page:
feed->entry as $key => $value) { …
NineCattoRules
  • 1,626
  • 5
  • 30
  • 65
1
vote
3 answers

Why does 2 scroll bars appear on my page? 1 inner scroll bar and 1 outer scroll bar?

Why does 2 scroll bars appear on my page? 1 inner scroll bar and 1 outer scroll bar? I am using infinite ajax scroll here: http://infiniteajaxscroll.com and pure css parallax scrolling here:…
user2343800
  • 135
  • 1
  • 3
  • 16
1
vote
1 answer

Resetting Infinite Scroll for show new results retrieved via AJAX

I've a filter form that on change fills a container div (#results) with new filtered results from a DB. But after changing the filter the Infinite Ajax Scroll plugin shows in the second page the results of the first search. On change event I need to…
Fred K
  • 11,133
  • 13
  • 70
  • 90
1
2 3