0
The goal is if the field is empty write in the "label" that the field cannot be empty.
The purpose of the form is to go to confirmaNovaParagem.php to send the data and then confirmaNovaParagem forwards the user to the add stops page.
What happens is that the script does not work and goes straight to Confirmanovastop.php.
I’m beginner in javascript sorry any error but obvious.
<script type="text/javascript" language="javascript">
function valida_form (){
if(document.getElementById("adicionanomeparagem").value == ""){
var div = document.getElementById("adicionanomeparagem");
div.innerText = "Não pode estar vazio!"
}
}
</script>
<div id="content">
<div id="segundofundo">
<div id="titulo">
<center>Adicionar Paragem</center>
</div>
<form name="Adicionaparagem" action="confirmaNovaParagem.php" method="post">
<div id="fundotitulo"><br><br>
Nome da paragem:<br><br>
<input type="text" name="adicionanomeparagem"><br><br>
Latitude paragem:<br><br>
<input type="text" name="adicionalatitudeparagem"><br><br>
Longitude paragem:<br><br>
<input type="text" name="adicionalongitudeparagem"><br><br>
Estado paragem: <br><br>
<select name="estadoparagem">
<option value="1">Activa</option>
<option value="2">Inactiva</option>
</select><br><br>
<div id="posicaobotao">
<input class="botao" value="Adicionar" onclick="valida_form ()" type="submit" >
</div>
</div>
</div>
</form>