I'm trying to do a simple validation on the extent of the images that will be uploaded, but it's not working very well so far, could you help me?
Follow the code I'm trying to get it to work.
var aoptionFoto = document.getElementById("optionsFotoImg").value;
var aopcDemaisTemFoto = ['Sim', 'Não'];
var ainput13 = document.getElementById("OutroTipoImagemFile").value == "";
var validaExt = ['jpg', 'png','gif', 'jpeg'];
var extImagem = ainput13.charAt(ainput13.length-3);
if(aoptionFoto == 'Sim' && ainput13 == true){
swal({
title: "Ops.. Algo está errado !",
text: "Para finalizar a compra é necessario fazer o upload da imagem.",
button: "Continuar",
});
document.formMonteCaixa.OutroTipoImagemFile[0].focus();
}else if(aoptionFoto == 'Sim' && ainput13 == false && extImagem != validaExt){
swal({
title: "Ops.. Algo está errado !",
text: "Para finalizar a compra é necessario fazer o upload da imagem com extensões valida.",
button: "Continuar",
});
document.formMonteCaixa.OutroTipoImagemFile[0].focus();
}else{
document.getElementById('BlocoDeEnvioEmailPag').style.display = 'block';
}
<p>Faça o upload da imagem</p>
<input name="OutroTipoImagemFile" id="OutroTipoImagemFile" accept="image/*" type="file">
The error that returns in the console is this:
Uncaught TypeError: ainput13.charAt is not a function at Checkout: ((index): 407) at HTMLButtonElement.onclick ((index): 753)