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 want a complete example for infinity scroll with Masonry; I use http://www.jquery4u.com/demos/infinite-scrolling-demo1/ but the next page won't load, and also the image of the loading won't show. What could be the problem?

My code is:

    <div id="container">
      <div class="box item"><img src="..."/>more content....</div>
      <div class="box item">....</div>
      <div class="box item">....</div>
    </div>
    <nav id="page-nav">
      <a href="getImages.html"></a>
    </nav>

and then

    <script src="js/jquery.masonry.min.js"></script>
    <script src="js/jquery.infinitescroll.min.js"></script>
    <script>
      $(function()
      {
    var $container = $('#container');
    $container.imagesLoaded(function(){
    $container.masonry({
    itemSelector: '.item',
    columnWidth: 328
});
});
$container.infinitescroll({
navSelector  : '#page-nav',    // selector for the paged navigation
nextSelector : '#page-nav a',  // selector for the NEXT link (to page 2)
itemSelector : '.item',     // selector for all items you'll retrieve
loading: {
    finishedMsg: 'No more pages to load.',
    img: 'http://i.imgur.com/6RMhx.gif'}
},
// trigger Masonry as a callback
 function( newElements ) {
 // hide new items while they are loading
var $newElems = $( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.masonry( 'appended', $newElems, true );
 });
 }
 );
 });
    </script>

The getImages.html contains also :

    <div id="container">
      <div class="box item"><img src="..."/>more content....</div>
      <div class="box item">....</div>
      <div class="box item">....</div>
    </div>
    <nav id="page-nav">
      <a href="getImages.html"></a>
    </nav>

please help me!!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.