1
I found a zip code query on the internet, but would not like to use jQuery. It is possible to change $.getScript
jQuery for Javascript?
var cepDestino = document.getElementById( 'cepDestino' ).value;
if(cepDestino.trim() != ""){
$.getScript("http://cep.republicavirtual.com.br/web_cep.php?formato=javascript&cep="+cepDestino, function(){
if (resultadoCEP["tipo_logradouro"] != '') {
if (resultadoCEP["resultado"]) {
document.getElementById( 'bairro' ).value = unescape(resultadoCEP["bairro"]);
document.getElementById( 'cidade' ).value = unescape(resultadoCEP["cidade"]);
document.getElementById( 'estado' ).value = unescape(resultadoCEP["estado"]);
}
}
});
}
NEW CODE
You will need to make an AJAX request, see this question Ajax request with pure Javascript (no Apis).
– Pedro Camara Junior