Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

Ignore this question - found more problems

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.