Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sayham-sjb/470dedf373ae263d7b2ed749ff7423d2 to your computer and use it in GitHub Desktop.
Save sayham-sjb/470dedf373ae263d7b2ed749ff7423d2 to your computer and use it in GitHub Desktop.
HowToPrintContentsFromCertainDIV_printSpecificDiv2 #js #VS
function printSpecificDiv(divID) {
var divElements = document.getElementById(divID).innerHTML;
var wholePage = document.body.innerHTML;
document.body.innerHTML = "<html><head><title></title></head><body>"
+ divElements + "</body>";
window.print();
document.body.innerHTML = wholePage;
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment