Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 1, 2019 23:05
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/39431b1229da7eb1670033680b5076fc to your computer and use it in GitHub Desktop.
Save parzibyte/39431b1229da7eb1670033680b5076fc to your computer and use it in GitHub Desktop.
const refrescarNombreDeImpresoraSeleccionada = () => {
fetch(RUTA_API + "/impresora")
.then(r => r.json())
.then(nombreImpresora => {
$impresoraSeleccionada.textContent = nombreImpresora;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment