I found a zip query on the internet, but I would not like to use jQuery. Is it possible to change $.getScript
jQuery to 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