0
I have an HTML div that displays totals of a calculation, and I need each time a new one is generated (at the click of the Generate button) a new blank div is created to receive the values, stacking the already generated ones under the other.
HTML code
BOOT
<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>
You want to generate only one blank div each time you click the button?
– Sam