The purpose is if the field is empty write in the "label" that the field can not be empty.
The purpose of the form is to go to the ConfirmNovaParagem.php to send the data and then the ConfirmNovaParagem sends the user to the page to add stops.
What happens is that the script does not work and goes to the ConfirmaNovaParagem.php soon.
I'm a beginner in javascript sorry for any obvious error.
<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>