var boton = document.querySelector("#buscar-paciente");
boton.addEventListener("click", function(){
var xhr = new XMLHttpRequest;
xhr.open("GET","https://alura-es-cursos.github.io/api-pacientes/pacientes.json");
xhr.addEventListener("load", function(){
var errorAjax = document.querySelector("#error-ajax");
if(xhr.status == 200){
errorAjax.classList.add("invisible")
var respuesta = xhr.responseText;
var pacientes = JSON.parse(respuesta);
pacientes.forEach(function(paciente){
adicionarPacienteEnTabla(paciente);
});
}else{
errorAjax.classList.remove("invisible");
}
});
xhr.send();
});