I'm using the following code to add a new group of fields to a form that will be emailed to php
$(document).ready(function() {
$("a[id='addProd']").click(function() {
var domElement = $('<div class="block product" id="novoProduto"><p><label for="tituloProd1">Título do Produto: </label><input type="text" name="tituloBanner1" placeholder="Título do Banner: "><label for="descricaoProd1">Descrição do Produto: </label><textarea name="descricaoProd1" placeholder="Descrição do Banner: "></textarea><label for="fotoProd1">Foto do Produto</label><input type="file" class="typeFile" name="fotoProd1"></p></div>');
$(this).before(domElement);
});
});
form label {
font-size: 1.4em;
margin: 20px 0 10px;
display: block;
}
form input {
width: 97%;
height: 35px;
padding-left: 2%;
background: #FFF;
border: 1px solid #ccc;
border-radius: 10px;
font-family: "Open Sans", sans-serif;
}
form .typeFile {
width: 97%;
height: 35px;
padding-left: 0;
background: transparent;
border: 1px solid transparent;
border-radius: 10px;
font-family: "Open Sans", sans-serif;
}
form textarea {
width: 97%;
height: 100px;
padding: 2% 0 0 2%;
background: #FFF;
border: 1px solid #ccc;
border-radius: 10px;
font-family: "Open Sans", sans-serif;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script><form><divclass="block product">
<p><label for="tituloProd1">Título do Produto/Serviço: </label>
<input type="text" name="tituloBanner1" placeholder="Título do Banner: ">
<label for="descricaoProd1">Descrição do Produto/Serviço: </label>
<textarea name="descricaoProd1" placeholder="Descrição do Banner: "></textarea>
<label for="fotoProd1">Foto do Produto/Serviço</label>
<input type="file" class="typeFile" name="fotoProd1"></p>
</div>
<a href="#novoProduto" id="addProd"><i class="fa fa-plus"></i>Adicionar Produto</a></button>
</form>
It works, but this way all new fields will be inserted with the same name="" and I think it will give some kind of error when submitting the form.
I think with some for in jQuery I can solve this, I tried this, but it did not work. Can anyone help me with a solution? Thanks!