Skip to content

It is a bug when i use div #45

Description

@metadata1984

consider the flowing example with endless-scroll version 1.8.0
<div id="mylist" class="row">
<div style="height:150px;float:left;">
<div>0</div>
</div>
</div>
<script >
$("#mylist").endlessScroll({
fireOnce: false,
fireDelay: 10,
insertAfter:'div.endless_scroll_content:last',
content: function(i,p,d){
console.log(i,p,d);
return '<div>'+p+'</div>'
}
});
</script>

Then i run my example.i found the srouce html code is :
<div class="endless_scroll_content" data-page="1">
<div style="height:150px;float:left;">
<div>1</div>
</div>
<div class="endless_scroll_content" data-page="2">
<div style="height:150px;float:left;">
<div>2</div>
</div>
</div>
</div>

i found the jquery.endless-scroll.js in line 160.
if (defaults.insertAfter === null) {
return this.options.insertAfter = "" + container + " div:last";
}

the defaults.insertAfter is aways null.
so the content aways insert after "div.endless_scroll_inner_wrap div:last"

It is a bug? Tnx.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions