Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 16, 2022 19:54
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 nocodesupplyco/993e479f44dd0b8988523a30773b6c25 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/993e479f44dd0b8988523a30773b6c25 to your computer and use it in GitHub Desktop.
Print a Specific Element w/ Button
document.getElementById("print-btn").addEventListener("click", function() {
let printContents = document.getElementById('print-content').innerHTML; //content to print
let originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment