I'm new to JQuery and would like to know how I add two <p>
tags without input, for example:
<p>Valor do Pedido: <span id="resultado" class="resultado">5</span></p>
<p>Taxa de Entrega: <span id="txa" class="txa">5</span></p>
<p>Total: <span id="tot" class="tot"></span></p>
I would like to add these two values: value + rate = total , but JQuery only recognizes when I use input, and that was not quite what I wanted to use.