Skip to content

Instantly share code, notes, and snippets.

@LiveBacteria
Forked from andrewlimaza/example.html
Created January 22, 2019 23:06
Show Gist options
  • Save LiveBacteria/899de61d57add1e6eb8c3d92340a13a5 to your computer and use it in GitHub Desktop.
Save LiveBacteria/899de61d57add1e6eb8c3d92340a13a5 to your computer and use it in GitHub Desktop.
Print certain div / elements using window.print()
<script>
function printDiv(divName){
var printContents = document.getElementById(divName).innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
}
</script>
<h1> do not print this </h1>
<div id='printMe'>
Print this only
</div>
<button onclick="printDiv('printMe')">Print only the above div</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment