I am using jquery infinite scroll which runs in page sequence e.g. it looks for page 2, 3, 4, 5 etc etc
But what I do is collate all the information onto page 2 as I'm drawing from a mysql db
As follows:
<?
$offset = $_GET[offset];
if(!$offset){ $offset=20; } else { $offset = ( $offset + 20 ); }
$query= mysql_query("select * from table limit $offset, 20",$db);
include '/items_display.inc'; // display results
?>
<nav id="page_nav"><a href="/pages/2.html?offset=<?=$offset?>"></a></nav>
This works perfectly but the jquery.infinitescroll.js is looking for pages as mentioned above.
I can create dummy pages for 3, 4, 5 etc up to a lot obviously but this is silly.
e.g. I create dummy 3, 4 & 5 but then after that the script stops, although there is more data, and a js console tells me there is a 404 error looking for 6.html
Is there a way around this?