Skip to content
Advertisement

Display a load more button in a mapped json array of objects

I have a fetch request for my sample application, that receive a json. I’ve mapped this json and i can potentially display over 100 elements with a single request.

The problem is that i want to implement a load more button to make the page more simple to read and load (for example i want to display 20 items, and other 20 if the load more button is triggered).

Here is my sample request in a reproducible demo: https://jsfiddle.net/0mc3gn9f/

How can i implement a load more button in vanilla js?

JavaScript
JavaScript
JavaScript

Advertisement

Answer

JavaScript

Actually, your API call already have

per_page=100 which is to get 100 items per page

page=1 which is to get data by page number

So we just need to change per_page=20 and make API call with incremental page number correctly

JavaScript
JavaScript
JavaScript

The full implementation here https://jsfiddle.net/691jp7cy/

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement