Skip to content

Instantly share code, notes, and snippets.

@olivx
Created March 28, 2018 01:34
Show Gist options
  • Save olivx/da1c9437bbe8fe3df8942d6c9c440b98 to your computer and use it in GitHub Desktop.
Save olivx/da1c9437bbe8fe3df8942d6c9c440b98 to your computer and use it in GitHub Desktop.
function printDiv(divName) {
var printContents = document.getElementById(divName).innerHTML;
var 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