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 use this jquery plugin for an endless scroll on a webpage. This is what my html looks like:

<!-- zip -->
<section class="bookmarks">
  <article class="bookmark">
    <h3><a href="">Super awesome first bookmark</a></h3>
  </article>

  <article class="bookmark">
    <h3><a href="">Super awesome second bookmark</a></h3>
  </article>

  <article class="bookmark">
    <h3><a href="">Super awesome third bookmark</a></h3>
  </article>

  <!-- Load more stuff here with endless scroll -->
</section>
<!-- zip -->

This is what my javascript looks like:

                    $(function () {
                            $(window).endlessScroll();
                            $('section.posts').endlessScroll({
                                    fireOnce: false,
                                    fireDelay: false,
                                    insertAfter: "section#bookmarks div:last",
                                    loader: '<div class="loading">Loading...<div>',
                                    content: function(i, p) {
                                          return "<h1>something<h1>"
                                    }
                            });
                    });

So my problem is that the text Loading... gets displayed but when it disappears again than the <h1>something</h1> won't be displayed.

Could anyone help me?

share|improve this question
Have you checked the console output? – Karl Laurentius Roos Aug 15 '12 at 11:17
Yep I did...I don't get any – Micheal Perr Aug 15 '12 at 11:20

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.