solhuang2201

Results 3 comments of solhuang2201

I had the same problem before, solved the problem is here: https://stackoverflow.com/questions/43887415/pace-js-never-reaches-100 Also check this [#470 ](https://github.com/CodeByZach/pace/issues/470)

This problem also bothered me for a long time, and then I finally to solve it successfully. I will record my method for your reference: Before set the option, the...

```js var infinite = new Waypoint.Infinite({ element: $('.infinite-container')[0], onAfterPageLoad: function ($items) { $items.each(function () { // you can edit '.infinite-item' by this $(this).addClass('loaded'); }); } }) ```