Привет, у меня есть список предметов. Я хотел бы добавить во внутреннюю часть списка один DIV для использования функции bootstrap развернуть / свернуть.
Я хотел бы добавить div после 3 элементов и указать ссылку на последнюю позицию в списке.
Проверьте теги комментариев в моем html коде, чтобы понять, куда вставить.
Спасибо !!
<div id="list">
<div class="item">some content</div>
<div class="item">some content</div>
<div class="item">some content</div>
<!-- there is place for new DIV (after 3 items) -->
<div class="item">some content</div>
<div class="item">some content</div>
<div class="item">some content</div>
<div class="item">some content</div>
<!-- there is place for end DIV -->
<!-- there is place for LINK (last position) -->
<a href="" class="collapse show">Show</a>
<!-- there is place end LINK -->
</div>