I have a <div>
containing multiple <article>
-tags. Now I want to add a button, which shows more entries by each click. Lets say I display 5 as default, then I click the show more button, then I get 10 entries, then I click again and I get 15 entries.
The HTML structure is pretty simple:
<div>
<article> data here </article>
<article> data here </article>
<article> data here </article>
</div>
<button>show more</button>
Thanks in advance...