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?