I am a beginner in java script and when I run this program if the 2 fields are blank then the first warning appears but after filling the first field the second warning already can someone explain to me why and how to fix?
function valida_form (){
if(document.getElementById("adicionanomeparagem").value == ""){
var div = document.getElementById("validacaonomeparagem");
div.innerText = "Não pode estar vazio!"
return false;
}
if (document.getElementById(validacaonomeparagem)!="")
{
document.getElementById("validacaonomeparagem").innerText = ""
}
if(document.getElementById("adicionalatitudeparagem").value == ""){
var div = document.getElementById("validacaolatitudeparagem");
div.innerText = "Não pode estar vazio!"
return false;
}
return true;
}