0
I have 2 HTML pages and each one has buttons, in the second page has several text boxes and intended that when the user presses the button of the first HTML page he directs to the second page and hides the button;
then when all fields in the text box are filled in the button will appear again. I already have this.
Page 1:
<a href="Pagina2.html">
<button type="button" id="criar">Criar plano de estudo</button>
</a>
Page 2 :
<input type="text" name="nome" id="antecedencia" placeholder="Dias de antecedencia">
<input type="date" id="datadometodo" ><br><p></p>
<div id="disciplina"> </div>
<input type="text" name="nome" id="duracaopordia" placeholder="Duração em horas"/><br><p></p>
<input type="text" name="nome" id="metododeavaliaçao" placeholder="Nome do método"/><br><p></p>
<a href="Pagina1.html">
<button type="button" id="concluir">Concluir</button>
</a>
That is to say:
intend to use Jquery
to hide the button with id="concluir"
which is on the second page when I press the button with id="criar"
that is on the first page and that the button with id="concluir"
appears only when all inputs of the second page are completed.