Skip to content

Instantly share code, notes, and snippets.

View LiveBacteria's full-sized avatar
⏭️
Job Hunting

Tyler Poore LiveBacteria

⏭️
Job Hunting
View GitHub Profile
@LiveBacteria
LiveBacteria / example.html
Created January 22, 2019 23:06 — forked from andrewlimaza/example.html
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;