1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| function impression ()
{
var DocumentContainer = document.getElementById("mydiv");
var WindowObject = window.open('', 'PrintWindow', 'width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes');
WindowObject.document.writeln('<!DOCTYPE html>');
WindowObject.document.writeln('<html><head>');
WindowObject.document.writeln('<style type="text/css" media="all">body,html{-webkit-print-color-adjust: exact !important;}.myContent {background-color: #FCB65D;-webkit-print-color-adjust: exact;}</style>');
WindowObject.document.writeln('</head><body>');
WindowObject.document.writeln('<div id="mydiv"><table><tr><td>' + $('#mydiv').html() + '</td></tr></table></div>');
WindowObject.document.writeln('</body></html>');
WindowObject.document.close();
WindowObject.focus();
WindowObject.print();
WindowObject.close();
} |
Partager