0
I have a form in html and I need to fill the fields and click on the "Next" button to send the form by email without the person noticing, because the form continues in the next steps...
<div class="form-group">
<input id="texto nomeform1" minlength="5" type="text" class="form-control" name="nome" placeholder="Nome Completo*">
</div>
<div class="form-group">
<input id="texto" type="email" class="form-control" name="email" placeholder="Email Válido*">
</div>
<div class="form-group">
<input type="text" class="form-control" id="celular" name="celular" placeholder="Telefone">
</div>
<div class="form-group">
<input type="text" class="form-control" name="sobre" placeholder="Como ficou sabendo sobre festas?">
</div>
<button type="button" name="usrSubmit" class="next action-button enviar_email" id="proximo" disabled value="Próximo"> Próximo</button>
Currently I can already send to the email the information I want but it finalizes the form...
You mean the page updates and therefore the rest of the form is never presented?
– user54824
@Joãolucas as the form is completed in 4 parts by the user, I need that in the transition from step 1 to step 2 is triggered by email the completed data of step 1 without the user realizing that a part of his data has already been sent. Currently it does the triggers the email and finalizes the form and goes back to step 1 to be filled again.
– Jvs Corrêa
What you should do is use
Jquery
to make this form switch, for example, opening and closing the parts according to the fill and then sending everything at once.– Wees Smith
But the other parts of the form are missing to rehearse an answer.
– user60252
What comes after sending the data?
– LeAndrade
Should the data be sent by e-mail after each step? Or it can be hidden while the later step is filled in?
– user54824