Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 6, 2019 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/298920648eba4c78b50675d3657d3bb3 to your computer and use it in GitHub Desktop.
Save parzibyte/298920648eba4c78b50675d3657d3bb3 to your computer and use it in GitHub Desktop.
const $btnCargarPerfil = document.querySelector("#btnCargarPerfil"),
$perfil = document.querySelector("#perfil");
$btnCargarPerfil.addEventListener("click", () => {
fetch("./perfil.php")
.then(respuesta => respuesta.text())
.then(respuestaComoHTML => {
$perfil.innerHTML = respuestaComoHTML;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment