openclassify/addons/default/visiosoft/base-theme/resources/js/theme/print.js
2026-03-02 23:41:21 +03:00

13 lines
341 B
JavaScript

function printElement(elementID){
var divContents = document.getElementById(elementID).innerHTML;
var printWindow = window.open('', '', 'height=550, width=800');
printWindow.document.write(divContents);
printWindow.document.close();
setTimeout(() => {
printWindow.print();
},500)
printWindow.focus();
}