1
I have a following field,
<input name="dados[<?= $i ?>][quantidade]" class="quantidade" type="text" value="<?= isset($dados['quantidade']) ? $dados['quantidade'] : '' ?>" id="quantidade"/>
And I have a modal that when I choose a new food, it adds another field like the one above, I have to take these values with jQuery and make a sum, how and what I do to catch all these fields?