I have an HTML div that displays totals of a calculation, and I need every new one (on the click of the Generate button) to generate a new blank div to get the values, stacking those already generated one under the other.
HTML Code
BOTAO
<input type="button" value="Gerar Lote" />
HTML
<div class="l1">
<h4>Resumo</h4>
</div>
<div class="l25">
<label>Débitos</label>
<input value="0.00" />
</div>
<div class="l25">
<label>Créditos</label>
<input value="0.00" />
</div>