Skip to content
Advertisement

AJAX pagination, update current page

I created a numeric pagination that loads the data via AJAX.

This is the code:

JavaScript

The code works, but when I refresh the page the data are loaded again from the first page. test_ajax

Ex: If I click the button that loads the page 2 when I refresh the page the data are displayed from the page 1.

There is a way to remain on the same page even after the page refresh?

pagination2.php

JavaScript

Advertisement

Answer

When the document is ready you use load_data(1);

That’s wrong because if someone refreshes at page 5 it starts anyway from page 1.
Check the current page everytime you refresh. The code should be something like this:

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