I’m using dummy content for a dev site that has about 100 rows or the same HTML – i.e.
<div class="container">
<div class="row">
Content
</div>
<div class="row">
Content
</div>
<div class="row">
Content
</div>
... up to 100
</div>
Instead of manually pasting in multiple rows, is there a way to clone that .row div with jQuery and add it to the container x number of times for dev purposes?
Have you tried using jQuery’s clone method?