Pagination
Standard pagination
Infinite scrolling
Example
function myInfiniteScrolling() {
// Original logic
... fetch products
... render products
// Inform Discount Ninja that new products have been added
// Publish this event after the products have rendered
document.dispatchEvent(new CustomEvent('la:dn:collection:updated'));
}Load more pagination
Snippet
Example
Last updated