Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active July 29, 2020 23:18
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/97136c791fd45cf1419e3c39953a08f0 to your computer and use it in GitHub Desktop.
Save parzibyte/97136c791fd45cf1419e3c39953a08f0 to your computer and use it in GitHub Desktop.
// Obtenemos una referencia al elemento
const $elemento = document.querySelector("#cuerpoTabla");
// El botón solo es para la demostración
const $btnLimpiar = document.querySelector("#btnLimpiar");
// Y en el click, limpiamos
$btnLimpiar.addEventListener("click", () => {
$elemento.innerHTML = "";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment