M
M
muav2018-08-06 16:10:55
JavaScript
muav, 2018-08-06 16:10:55

How to make infinite loading of posts for bootstap?

I want to make an infinite loading of posts on Infinite Scroll, but my loop structure is such that every three posts are framed by a separate box:

<div class="row">
 <div class="post"></div>
 <div class="post"></div>
 <div class="post"></div>
</div>

<div class="row">
 <div class="post"></div>
 <div class="post"></div>
 <div class="post"></div>
</div>

And in the documentation for Infinite Scroll, ask to set a post wrapper. How then to be with div class="row" so that it works and the page does not fall apart?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
bkosun, 2018-08-06
@bkosun

You can set multiple classes for an element:
<div class="foo bar"></div>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question