Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sayham-sjb/67d6b67a0db6e861bedd3198cc025ec4 to your computer and use it in GitHub Desktop.
Save sayham-sjb/67d6b67a0db6e861bedd3198cc025ec4 to your computer and use it in GitHub Desktop.
HowToPrintContentsFromCertainDIV_printSpecificDiv1 #js #VS
function printSpecificDiv(divId) {
var printContent = document.getElementById(divId);
var windowUrl = 'about:blank';
var windowName = 'Print' + new Date().getTime();
var printWindow = window.open(windowUrl, windowName,
'left = 10000, top = 10000, width = 0, height = 0');
printWindow.document.write(printContent.innerHTML);
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment