I'm doing size registration on a system as follows:
Itisworkingperfectly,butInowneedtolimittheinclusionofupto03Sizes,butIcannotdoit.Hereisthecode:
<tableborder="0">
<tr class='linhas'>
<td style="padding: 5px"><input type="text" name="Cores[]" class="form-control" placeholder="Cor do Produto" value=""></td>
<td style="padding: 5px"><input type="text" name="Tamanho[]" class="form-control" placeholder="Tamanho" value=""></td>
<td style="padding: 5px"><input type="number" name="EstoqueProd[]" class="form-control pull-left" placeholder="Estoque" min="1" value=""></td>
<td style="padding: 5px"><button type="button" class="removerCampo btn btn-danger" title="Remover linha"><i class="fa fa-minus-square" aria-hidden="true"></i> Remover</button></td>
</tr>
<tr>
<td colspan="3"><button type="button" class="adicionarCampo btn btn-primary" title="Adicionar item"><i class="fa fa-plus-square" aria-hidden="true"></i> Adicionar mais tamanhos</button></td>
</tr>
</table>
<script type="text/javascript">
$(function () {
function removeCampo() {
$(".removerCampo").unbind("click");
$(".removerCampo").bind("click", function () {
if($("tr.linhas").length > 1){
$(this).parent().parent().remove();
}
});
}
$(".adicionarCampo").click(function () {
novoCampo = $("tr.linhas:first").clone();
novoCampo.find('input[type="text"]').val("");
novoCampo.find('select').val("");
novoCampo.insertAfter("tr.linhas:last");
removeCampo();
});
});
</script>