Jeśli przewiniesz w dół do tego punktu, znalazłem rozwiązanie dla przeglądarki Firefox. Wyświetli zawartość określonego elementu div bez stopek i nagłówków. Możesz dostosować, jak chcesz.
Najpierw pobierz i zainstaluj ten dodatek: JSPrintSetup .
Po drugie, napisz tę funkcję:
<script>
function PrintElem(elem)
{
var mywindow = window.open('', 'PRINT', 'height=400,width=600');
mywindow.document.write('<html><head><title>' + document.title + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write(elem);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10*/
//jsPrintSetup.setPrinter('PDFCreator'); //set the printer if you wish
jsPrintSetup.setSilentPrint(1);
//sent empty page header
jsPrintSetup.setOption('headerStrLeft', '');
jsPrintSetup.setOption('headerStrCenter', '');
jsPrintSetup.setOption('headerStrRight', '');
// set empty page footer
jsPrintSetup.setOption('footerStrLeft', '');
jsPrintSetup.setOption('footerStrCenter', '');
jsPrintSetup.setOption('footerStrRight', '');
// print my window silently.
jsPrintSetup.printWindow(mywindow);
jsPrintSetup.setSilentPrint(1); //change to 0 if you want print dialog
mywindow.close();
return true;
}
</script>
Po trzecie, w swoim kodzie, gdziekolwiek chcesz napisać kod wydruku, zrób to (użyłem JQuery. Możesz użyć zwykłego javascript):
<script>
$("#print").click(function () {
var contents = $("#yourDivToPrint").html();
PrintElem(contents);
})
</script>
Oczywiście do kliknięcia potrzebny jest link:
<a href="#" id="print">Print my Div</a>
I twój div do wydrukowania:
<div id="yourDivToPrint">....</div>