In simple terms, I would like to be able to click on the div tagged with the class click-to-add. Upon clicking, another div tagged with the class duplicate should be added above the click-to-add div and directly after the initial duplicate div.
<div class="site-table-row header">
<div class="site-table-row duplicate">
<div></div>
<div></div>
<div></div>
</div>
<div class="site-table-row">
<div class="click-to-add">Click Me</div>
</div>
</div>
Your assistance or guidance in achieving this is greatly appreciated. Thank you!