-
-
Save LiveBacteria/899de61d57add1e6eb8c3d92340a13a5 to your computer and use it in GitHub Desktop.
Revisions
-
andrewlimaza created this gist
Dec 19, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ <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>