document.getElementById("btnPrint").onclick = function () { printElement(document.getElementById("printThis")); var modThis = document.querySelector("#printSection .modifyMe"); modThis.appendChild(document.createTextNode("")); window.print(); } document.getElementById("btnPrint1").onclick = function () { printElement(document.getElementById("printThis1")); var modThis = document.querySelector("#printSection .modifyMe"); modThis.appendChild(document.createTextNode("")); window.print(); } document.getElementById("btnPrint2").onclick = function () { printElement(document.getElementById("printThis2")); var modThis = document.querySelector("#printSection .modifyMe"); modThis.appendChild(document.createTextNode("")); window.print(); } document.getElementById("btnPrint3").onclick = function () { printElement(document.getElementById("printThis3")); var modThis = document.querySelector("#printSection .modifyMe"); modThis.appendChild(document.createTextNode("")); window.print(); } function printElement(elem) { var domClone = elem.cloneNode(true); var $printSection = document.getElementById("printSection"); if (!$printSection) { var $printSection = document.createElement("div"); $printSection.id = "printSection"; document.body.appendChild($printSection); } $printSection.innerHTML = ""; $printSection.appendChild(domClone); }